From 7636b3dd01ae2ab41119f304d3a122bc5fc8bb17 Mon Sep 17 00:00:00 2001 From: Nikita Karetnikov Date: Mon, 28 Aug 2023 09:25:57 +0000 Subject: [PATCH] Wrap env description in quotes Fixes #274. --- src/features/environmentCreate/components/EnvironmentCreate.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/features/environmentCreate/components/EnvironmentCreate.tsx b/src/features/environmentCreate/components/EnvironmentCreate.tsx index a1b8e950..99feb5b3 100644 --- a/src/features/environmentCreate/components/EnvironmentCreate.tsx +++ b/src/features/environmentCreate/components/EnvironmentCreate.tsx @@ -59,7 +59,7 @@ export const EnvironmentCreate = ({ environmentNotification }: IEnvCreate) => { namespace, specification: `${stringify( code - )}\ndescription: ${description}\nname: ${name}\nprefix: null` + )}\ndescription: '${description}'\nname: ${name}\nprefix: null` }; try {