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

pull/10850/head
Dakota Walsh 2024-01-30 15:19:53 +13:00 committed by GitHub
parent 16ae4f8681
commit e39c19bcca
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 3 additions and 0 deletions

View File

@ -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');
}
};