We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I used to have a none selected text with an icon that looked just fine:
<select multiple id="team-filter" class="selectpicker" data-empty-label="<span class='mr-2 small'><i class='far fa-people-group'></i></span>Teams">
const $filter = $(this); const isLongList = $filter.find('option').length > 10; $filter.selectpicker({ styleBase: 'll-btn ll-filter-btn btn sm', dropupAuto: true, noneSelectedText: $filter.data('empty-label'), hideDisabled: true, liveSearch: isLongList, liveSearchPlaceholder: isLongList ? "Search option" : null, actionsBox: isLongList, selectAllText: `<span class="mr-1"><i class="fal fa-circle-check"></i></span>Select All`, deselectAllText: `<span class="mr-1"><i class="fal fa-circle-minus"></i></span>Deselect All`, width: 'auto', selectOnTab: true, dropdownAlignRight: 'auto' });
But now it renders as text instead of HTML.
Before:
After:
Using sanitize: false does nothing.
sanitize: false
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I used to have a none selected text with an icon that looked just fine:
<select multiple id="team-filter" class="selectpicker" data-empty-label="<span class='mr-2 small'><i class='far fa-people-group'></i></span>Teams">
But now it renders as text instead of HTML.
Before:
After:
Using
sanitize: false
does nothing.The text was updated successfully, but these errors were encountered: