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,11 +199,7 @@ let PillarTable = Vue.component('pillar-table-base', {
} }
} }
else { else {
if (this.selectedIds.length === 1 && this.selectedIds[0] === itemId) { this.selectedIds = [itemId];
this.selectedIds = [];
} else {
this.selectedIds = [itemId];
}
} }
}, },
isSelectBetweenClick(clickEvent) { isSelectBetweenClick(clickEvent) {