diff --git a/src/components/agents/HistoryTab.vue b/src/components/agents/HistoryTab.vue index ef9d6d9..105148c 100644 --- a/src/components/agents/HistoryTab.vue +++ b/src/components/agents/HistoryTab.vue @@ -46,18 +46,15 @@ @@ -146,6 +143,14 @@ export default { }); } + function showCommandOutput(output) { + $q.dialog({ + style: "width: 70vw; max-width: 80vw", + message: `
${output}
`, + html: true, + }); + } + // vue component hooks onMounted(() => { if (selectedAgent.value) getHistory(); @@ -163,6 +168,7 @@ export default { // methods showScriptOutput, + showCommandOutput, getHistory, truncateText,