diff --git a/ayanova/src/api/translation.js b/ayanova/src/api/translation.js index 8db4caa7..9736f860 100644 --- a/ayanova/src/api/translation.js +++ b/ayanova/src/api/translation.js @@ -14,7 +14,7 @@ export default { //iterate the keys that are cached and set them from whatever is in editedTranslation for that key //de-lodash - // window.$gz._.forOwn(window.$gz.store.state.translationText, function( + // window.$gz. _.forOwn(window.$gz.store.state.translationText, function( // cacheval, // cachekey // ) { @@ -49,7 +49,7 @@ export default { let needIt = []; //de-lodash - // window.$gz._.forOwn(window.$gz.store.state.translationText, function( + // window.$gz. _.forOwn(window.$gz.store.state.translationText, function( // cacheval, // cachekey // ) { diff --git a/ayanova/src/components/gz-data-table.vue b/ayanova/src/components/gz-data-table.vue index 6494c648..557a1627 100644 --- a/ayanova/src/components/gz-data-table.vue +++ b/ayanova/src/components/gz-data-table.vue @@ -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({ diff --git a/ayanova/src/views/ay-about.vue b/ayanova/src/views/ay-about.vue index d2029ccf..255c32da 100644 --- a/ayanova/src/views/ay-about.vue +++ b/ayanova/src/views/ay-about.vue @@ -238,11 +238,17 @@ function clickHandler(menuItem) { let text = element.innerText || element.textContent; let logText = ""; - window.$gz._.forEach(m.vm.$store.state.logArray, function appendLogItem( - value - ) { + //de-lodash + // window.$gz._.forEach(m.vm.$store.state.logArray, function appendLogItem( + // value + // ) { + // logText += value + "\n"; + // }); + + m.vm.$store.state.logArray.forEach(function appendLogItem(value) { logText += value + "\n"; }); + window.$gz.util.copyToClipboard(text + "\nCLIENT LOG\n" + logText); break; default: