+3
-3
lines changedFilter options
+3
-3
lines changed Original file line number Diff line number Diff line change
@@ -322,7 +322,7 @@
322
322
if (this.MdTable.selectedItems.includes(item)) {
323
323
this.MdTable.selectedItems = this.MdTable.selectedItems.filter(target => target !== item)
324
324
} else {
325
-
this.MdTable.selectedItems.push(item)
325
+
this.MdTable.selectedItems = this.MdTable.selectedItems.concat([item])
326
326
}
327
327
},
328
328
sortTable () {
Original file line number Diff line number Diff line change
@@ -95,7 +95,7 @@
95
95
},
96
96
addSelection () {
97
97
if (!this.isMultipleSelected) {
98
-
this.MdTable.selectedItems.push(this.mdItem)
98
+
this.MdTable.selectedItems = this.MdTable.selectedItems.concat([this.mdItem])
99
99
}
100
100
},
101
101
removeSelection () {
@@ -124,7 +124,7 @@
124
124
return false
125
125
}
126
126
127
-
this.MdTable.selectable.push(this.mdItem)
127
+
this.MdTable.selectable = this.MdTable.selectable.concat([this.mdItem])
128
128
},
129
129
removeSelectableItem (target = this.mdItem) {
130
130
if (this.mdSelectable === 'multiple') {
You can’t perform that action at this time.
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4