Removed possibility to toggle selected in table

This commit is contained in:
Tobias Johansson 2019-03-22 14:06:17 +01:00
parent 6c4e6088d3
commit 022fc9a1b2

View File

@ -199,12 +199,8 @@ let PillarTable = Vue.component('pillar-table-base', {
}
}
else {
if (this.selectedIds.length === 1 && this.selectedIds[0] === itemId) {
this.selectedIds = [];
} else {
this.selectedIds = [itemId];
}
}
},
isSelectBetweenClick(clickEvent) {
return clickEvent.shiftKey;