fix(console): export LANG and LC_ALL for kube app console EE-6593 (#11037)

This commit is contained in:
Dakota Walsh
2024-01-30 15:19:53 +13:00
committed by GitHub
parent 16ae4f8681
commit e39c19bcca
@@ -75,6 +75,9 @@ export function ConsoleView() {
terminal?.setOption('cursorBlink', true);
terminal?.focus();
setConnectionStatus('open');
socket.send('export LANG=C.UTF-8\n');
socket.send('export LC_ALL=C.UTF-8\n');
socket.send('clear\n');
}
};