From d599cc450defba7942d55fe0236d7f512944c665 Mon Sep 17 00:00:00 2001 From: Devon Steenberg Date: Thu, 23 Jul 2026 09:18:08 +1200 Subject: [PATCH] fix(kubectl-shell): prompt [BE-13236] (#3234) --- .../kubernetes/cluster/KubectlShell/KubectlShellView.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/react/kubernetes/cluster/KubectlShell/KubectlShellView.tsx b/app/react/kubernetes/cluster/KubectlShell/KubectlShellView.tsx index 9c5848155b..4c2b1cebb3 100644 --- a/app/react/kubernetes/cluster/KubectlShell/KubectlShellView.tsx +++ b/app/react/kubernetes/cluster/KubectlShell/KubectlShellView.tsx @@ -58,8 +58,8 @@ export function KubectlShellView() { initialCommands={[ ...LINUX_SHELL_INIT_COMMANDS, - '# Run kubectl commands inside here', - '# e.g. kubectl get all', + '# Run kubectl commands inside here\n', + '# e.g. kubectl get all\n', '', ]} onResize={supportsResizeOverSocket ? 'socket' : null}