Sunday, March 26, 2023
1 change · master
Miscellaneous changes
Before this commit, when the user edits a float time field a border is displayed instead of having the same style then the others fields (float, integer, etc). The reason is a style is added (`outline: none;`) on input with `type="text"` but the type is missing on the input tag of float time field component. This commit adds a prop `inputType` and by default is `text` the others fields component and this prop is used to define the type on the input inside the template of float time component.
Original PR description
Before this commit, when the user edits a float time field a border is displayed instead of having the same style then the others fields (float, integer, etc). The reason is a style is added (`outline: none;`) on input with `type="text"` but the type is missing on the input tag of float time field component. This commit adds a prop `inputType` and by default is `text` the others fields component and this prop is used to define the type on the input inside the template of float time component. Issue found in task-3000757 Forward-Port-Of: odoo/odoo#115818 Forward-Port-Of: odoo/odoo#115736