Minimize button icon invisible — wrong icon class bi-bi-dash-lg (double bi- prefix) #6
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
The minimize button renders with no visible icon. The markup uses a malformed Bootstrap Icons class with a doubled
bi-prefix:The icon class is
bi-bi-dash-lgbut should bebi-dash-lg(i.e.class="bi bi-dash-lg"). Bootstrap Icons has nobi-bi-dash-lgglyph, so nothing renders.Note: this minimize button is reused in many places, so the fix should land at the shared component/source for it (grep for
bi-bi-dash-lg).Found while testing the hero_browser Dioxus admin on current
development, at/hero_components/admin/?service=hero_browser. Most of these are shell-level and affect every service, not just hero_browser.