Retroactively apply ACC2 coding guideline We need to update all `input type="number"` occurrences to use `<input type="text" inputmode="numeric" pattern="[0-9]*">` as per the new accessibility guideline.
This bug split into multiple might make a good Academy task?
(In reply to Katrin Fischer from comment #1) > This bug split into multiple might make a good Academy task? Done
https://wiki.koha-community.org/wiki/Coding_Guidelines#ACC2:_Input_type_.22number.22_should_be_avoided
Owen Leonard updated Bug 27408 and Bug 27410 for currency strings, and I've updated Bug 27405: - inputmode changed to "decimal" - regex pattern changed to "^\d+(\.\d{2})?$" as found in admin/debit_types.tt "The regex validating the modified field doesn't allow for currency-formatted values like "1.00" because of the dot."
I think all of these occurrences have been fixed now. Is that correct?
(In reply to Henry Bolshaw from comment #5) > I think all of these occurrences have been fixed now. Is that correct? I think Bug 28134 and 28135 are the last.