Moin
18 Agosto, 2026 22:03
1
El selector de iconos hace que el teclado de mi tableta empiece con mayúscula cuando uso Chrome.
Esto hace que sea un poco más difícil encontrar iconos, ya que la búsqueda de iconos no funciona con letras mayúsculas.
¿Es posible hacer que la búsqueda no distinga entre mayúsculas y minúsculas o evitar que el teclado empiece con mayúscula?
5 Me gusta
chapoi
19 Agosto, 2026 07:46
2
He implementado ambas sugerencias por si acaso: ahora debería funcionar tanto con mayúsculas como desactivar al mismo tiempo la capitalización automática.
main ← ux-dfilterinput-icons-case-insensitive
approved 07:55AM - 19 Aug 26 UTC
This fixes https://meta.discourse.org/t/icon-picker-search-doesnt-support-capita… l-letters/410385
* The icon names are now matched case-insensitive
* The `DFilterInput`, which only has ~30 consumers that are list filters, not content-entry fields, benefits from turning these off generally:
* `autocapitalize="none"`: mobile keyboards capitalizing the first letter is actively harmful here (see report)
* `autocorrect="off"`: OS autocorrecting a partial token ("cate" → "Kate") as you type
* `autocomplete="off"`: the browser dropdown physically covers the results list you're filtering.
| BC | AC |
|--------|--------|
| <img width="1179" height="2556" alt="image" src="https://github.com/user-attachments/assets/ed61b463-64c0-4ef3-8cc6-ac339986c316" /> | <img width="1179" height="2556" alt="image" src="https://github.com/user-attachments/assets/0152f9df-586f-4d08-abad-32233d85be19" /> |
2 Me gusta