From 3fef8644cc695e7b0a5aa635caa0e22515b3287c Mon Sep 17 00:00:00 2001 From: mbecker20 Date: Sun, 10 Aug 2025 19:28:08 -0700 Subject: [PATCH] no space at front of KeyValue default args --- frontend/src/components/resources/action/config.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/components/resources/action/config.tsx b/frontend/src/components/resources/action/config.tsx index e42b54bf3..156051e66 100644 --- a/frontend/src/components/resources/action/config.tsx +++ b/frontend/src/components/resources/action/config.tsx @@ -344,7 +344,7 @@ export const ActionConfig = ({ id }: { id: string }) => { const default_arguments = (format: Types.FileFormat) => { switch (format) { case Types.FileFormat.KeyValue: - return " # ARG_NAME = value\n"; + return "# ARG_NAME = value\n"; case Types.FileFormat.Toml: return '# ARG_NAME = "value"\n'; case Types.FileFormat.Yaml: