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

@@ -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: