This commit is contained in:
2020-10-08 18:37:03 +00:00
parent 89f37fa1cd
commit c3b5a360f7
3 changed files with 18 additions and 6 deletions

View File

@@ -492,7 +492,13 @@ export default {
//emit event to parent form of selected rows
//Note vm this bubbles up all the columns of all the selected rows
//so, to be more efficient for now will just send the ID's until I see a need for other shit
this.$emit("selection-change", window.$gz._.map(this.selected, "id"));
//de-lodash
//this.$emit("selection-change", window.$gz. _.map(this.selected, "id"));
this.$emit(
"selection-change",
this.selected.map(z => z.id)
);
},
editListView() {
this.$router.push({