scriptWriterEval

This commit is contained in:
SPRINX0\prochazka
2025-04-24 16:36:07 +02:00
parent e740db11ed
commit d331d48ca2
4 changed files with 108 additions and 20 deletions

View File

@@ -167,7 +167,7 @@
const handleGenerateScript = async e => {
const values = $formValues as any;
const code = await createImpExpScript($extensions, values, true);
const code = await createImpExpScript($extensions, values, 'script');
openNewTab(
{
title: 'Shell #',
@@ -183,7 +183,7 @@
progressHolder = {};
const values = $formValues as any;
busy = true;
const script = await createImpExpScript($extensions, values);
const script = await createImpExpScript($extensions, values, 'json');
executeNumber += 1;
let runid = runnerId;
const resp = await apiCall('runners/start', { script });