Skip to content

Commit b2bfbc1

Browse files
authored
Update table.js
1 parent 3feec3e commit b2bfbc1

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

src/components/table/table.js

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -96,10 +96,6 @@ export default {
9696
type: [Boolean, String],
9797
default: false
9898
},
99-
busy: {
100-
type: Boolean,
101-
default: false
102-
},
10399
sortBy: {
104100
type: String,
105101
default: null
@@ -165,7 +161,6 @@ export default {
165161
return {
166162
localSortBy: this.sortBy || '',
167163
localSortDesc: this.sortDesc || false,
168-
localBusy: false,
169164
// Our local copy of the items. Must be an array
170165
localItems: isArray(this.items) ? this.items.slice() : [],
171166
// Flag for displaying which empty slot to show, and for some event triggering.
@@ -227,9 +222,6 @@ export default {
227222
apiUrl: this.apiUrl
228223
}
229224
},
230-
computedBusy() {
231-
return this.busy || this.localBusy
232-
},
233225
computedFields() {
234226
// We normalize fields into an array of objects
235227
// [ { key:..., label:..., ...}, {...}, ..., {..}]

0 commit comments

Comments
 (0)