Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(frontend): span cannot be a child of option (#3930)
# Motivation It's probably a warning currently but, following becomes an error when migrating to Svelte v5 in #3929: > `<span>` cannot be a child of `<option>`. `<option>` only allows these children: `<#text>`. The browser will 'repair' the HTML (by moving, removing, or inserting elements) which breaks Svelte's assumptions about the structure of your components. # Changes - Remove `span` in `option`.
- Loading branch information