Skip to content
Snippets Groups Projects
Commit 6c87e33e authored by Simon Urli's avatar Simon Urli
Browse files

XWIKI-22387: Filter boxes for Notifications Custom Filters LiveData are...

XWIKI-22387: Filter boxes for Notifications Custom Filters LiveData are displayed again in larger size in Chrome and Edge and not aligned in Firefox

  * Use the proper class on filter boolean input
parent b711635c
No related branches found
No related tags found
No related merge requests found
......@@ -22,8 +22,8 @@
<!-- BooleanFilter is a custom filter that allow to filter boolean values. -->
<template>
<span v-if="isReady">
<select :value="filterEntry.value" class="xwiki-selectize livedata-selectize filter-boolean" ref="input"
:aria-label="$t('livedata.filter.boolean.label')">
<select :value="filterEntry.value" class="xwiki-selectize livedata-selectize filter-boolean livedata-filter"
ref="input" :aria-label="$t('livedata.filter.boolean.label')">
<option value=""></option>
<option :value="trueValue">{{ $t('livedata.displayer.boolean.true') }}</option>
<option :value="falseValue">{{ $t('livedata.displayer.boolean.false') }}</option>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment