8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4fff8d2 commit f2c6ebeCopy full SHA for f2c6ebe
src/components/table/CDataTable.vue
@@ -41,7 +41,7 @@
41
<select
42
class="form-control"
43
@change="paginationChange"
44
- aria-label="visible items amount change"
+ aria-label="changes number of visible items"
45
>
46
<option value="" selected disabled hidden>
47
{{perPageItems}}
@@ -98,8 +98,7 @@
98
<th :class="headerClass(index)" :key="index">
99
<slot :name="`${rawColumnNames[index]}-filter`">
100
<input
101
- v-if="itemsDataColumns.includes(colName) &&
102
- (!fields || fields[index].filter !== false)"
+ v-if="!fields || fields[index].filter !== false"
103
class="form-control form-control-sm"
104
@input="columnFilterEvent(colName, $event.target.value, 'input')"
105
@change="columnFilterEvent(colName, $event.target.value, 'change')"
0 commit comments