James Tudsbury
James Tudsbury
Just had this issue. An element inside it's flex container was breaking out of the container and not wrapping. I found that removing `align-items: center;` fixed the issue but I...
At the moment, generate our reference screenshots on the CI server and then download them and put them in source control. We then know when CI does a test, the...
Should the presence function not look for numbers too? This function is assuming that any number value is not present. So if an input type is number, the presence function...
Yes but when attempting to validate a input type of "number" it doesn't work because it validates against a string and not a number. Number input types are incompatible
This code will pass the validation as expected, because the input has a value and is therefore present. ``` foo: { presence: true } ``` This code will not pass...
I've just discovered this is also true for the format validator. Again, validation will work for text inputs but not for numbers. If I pass the following pattern to the...