diff --git a/src/components/inputs/HarnessVueBootstrapMultiselectListbox.vue b/src/components/inputs/HarnessVueBootstrapMultiselectListbox.vue index 60ee2a8..0862661 100644 --- a/src/components/inputs/HarnessVueBootstrapMultiselectListbox.vue +++ b/src/components/inputs/HarnessVueBootstrapMultiselectListbox.vue @@ -119,9 +119,11 @@ function setFilterLoadData(newVal) { } function leftToRight() { - const newVal = harness.getFilter(props.filter.key).concat(leftBox); + const selected = harness.getFilter(props.filter.key); + const newVal = [...leftBox.value, ...selected]; setFilterLoadData(newVal); } + function rightToLeft() { const newVal = harness .getFilter(props.filter.key)