Closed lgedgar closed 6 months ago
@lgedgar could you check if the o-field is now working as you would expect on the deployed preview in #915 ?
I'm not sure if this is related, but I've observed another issue. I've attached screenshots below to illustrate the problem. Although it wasn't a major issue—since I was able to fix it by using the expanded
property—it was unexpected.
The code consists of OField
wrapping OInput
component, nothing special. I hope this will be useful for someone.
@andrzejkupczyk I don't know how that happened, but i think it's more like it's supposed to be now :)
Apologies for slow reply here, but confirmed that 0.8.9 fixes - thanks!
Overview of the problem
Oruga version: [0.8.8] Vuejs version: [3.3.11] OS/Browser: Debian, Firefox 115 (and Chromium 124)
Description
The
<o-input type="text">
is behaving badly when wrapped in<o-field horizontal>
- makes the input textbox practically unusable.You can focus the textbox, but then after pressing one key the focus blurs so you have to click the input again to press another key.
This quirk is new as of 0.8.8, so for now I'm using 0.8.7 which does not have the issue.
Steps to reproduce
Make a text input wrapped in horizontal field:
I believe that would show the behavior in any context. But just in case, here is a complete example:
Expected behavior
Typing should be allowed as normal, for text input in horizontal field.
Actual behavior
Typing is very problematic as described above.
If I pass
:horizontal="false"
(or just omit it) to the field, then the input textbox behaves normally. (But that would break my layout so I use 0.8.7 for now.)Let me know if I can help further with this.