Commit 52e49907f5b5683a428add32d28269c8650cd0f3

Authored by Aresn
Committed by GitHub
1 parent c92fde67

Update table-head.vue

Showing 1 changed file with 1 additions and 1 deletions   Show diff stats
src/components/table/table-head.vue
... ... @@ -125,7 +125,7 @@
125 125 isSelectDisabled () {
126 126 let isSelectDisabled = false;
127 127 if (!this.data.length) isSelectDisabled = true;
128   - if(!this.data.find(item => !item._disabled)) isSelectDisabled = true;
  128 + if (!this.data.find(item => !item._disabled)) isSelectDisabled = true;
129 129 return isSelectDisabled;
130 130 }
131 131 },
... ...