From 7e16d950d6c314273994337c9761aa67f3b9803b Mon Sep 17 00:00:00 2001 From: thomasdenecker Date: Fri, 4 Aug 2023 17:33:00 +0200 Subject: [PATCH] fix: remove split for run command --- components/content/Execute.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/content/Execute.vue b/components/content/Execute.vue index b335483..b549d5b 100644 --- a/components/content/Execute.vue +++ b/components/content/Execute.vue @@ -12,7 +12,7 @@ size="x-small" prepend-icon="mdi-cog-play" class="mb-2 ms-2" - >Tester mon codeTest my code
{{ command }} @@ -72,7 +72,7 @@ export default { this.store.updateCommand(this.editor.getValue()); }, async testCode() { - await this.store.updateCommand(this.editor.getValue().split("\n")); + await this.store.updateCommand(this.editor.getValue()); await this.store.updateCommandTest(this.test.split("\n"), this.id); }, },