This commit is contained in:
@@ -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
|
||||
// ) {
|
||||
|
||||
@@ -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({
|
||||
|
||||
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user