From d164b625d467bd05e02e92249aa8f2f001bcd1fb Mon Sep 17 00:00:00 2001 From: David Fridrich Date: Tue, 11 Aug 2026 15:56:54 +0200 Subject: [PATCH] OCPBUGS-98159: Fix leading whitespace in Quick Start execute code snippets --- .../markdown-extensions/inline-execute-extension.ts | 4 +--- .../markdown-extensions/multiline-execute-extension.ts | 5 +---- 2 files changed, 2 insertions(+), 7 deletions(-) diff --git a/frontend/packages/console-shared/src/components/markdown-extensions/inline-execute-extension.ts b/frontend/packages/console-shared/src/components/markdown-extensions/inline-execute-extension.ts index e6f15488e17..3a0907238f3 100644 --- a/frontend/packages/console-shared/src/components/markdown-extensions/inline-execute-extension.ts +++ b/frontend/packages/console-shared/src/components/markdown-extensions/inline-execute-extension.ts @@ -46,9 +46,7 @@ const useInlineExecuteCommandExtension = () => {
-
-            ${group.trim()}
-          
+
${group.trim()}
`; }, diff --git a/frontend/packages/console-shared/src/components/markdown-extensions/multiline-execute-extension.ts b/frontend/packages/console-shared/src/components/markdown-extensions/multiline-execute-extension.ts index 80d5271687e..b8d172dd684 100644 --- a/frontend/packages/console-shared/src/components/markdown-extensions/multiline-execute-extension.ts +++ b/frontend/packages/console-shared/src/components/markdown-extensions/multiline-execute-extension.ts @@ -47,10 +47,7 @@ const useMultilineExecuteCommandExtension = () => {
-
-                  ${group.trim()}
-                
+
${group.trim()}
`; },