Tweak how we disable grid filter options
hoping to find some magic combo that works for everyone...
This commit is contained in:
parent
e9976635ba
commit
4a198ce473
|
@ -24,7 +24,9 @@
|
||||||
<option v-for="key in filtersSequence"
|
<option v-for="key in filtersSequence"
|
||||||
:key="key"
|
:key="key"
|
||||||
:value="key"
|
:value="key"
|
||||||
:disabled="filters[key].visible">
|
## TODO: previous code here was simpler; trying to track down
|
||||||
|
## why disabled options don't appear so on Windows Chrome (?)
|
||||||
|
:disabled="filters[key].visible ? 'disabled' : null">
|
||||||
{{ filters[key].label }}
|
{{ filters[key].label }}
|
||||||
</option>
|
</option>
|
||||||
</b-select>
|
</b-select>
|
||||||
|
|
Loading…
Reference in a new issue