Tweak how we disable grid filter options

hoping to find some magic combo that works for everyone...
This commit is contained in:
Lance Edgar 2019-05-08 17:16:27 -05:00
parent e9976635ba
commit 4a198ce473

View file

@ -24,7 +24,9 @@
<option v-for="key in filtersSequence"
:key="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 }}
</option>
</b-select>