mirror of https://github.com/portainer/portainer
fix(console): export LANG and LC_ALL for kube app console EE-6593 (#11037)
parent
16ae4f8681
commit
e39c19bcca
|
@ -75,6 +75,9 @@ export function ConsoleView() {
|
||||||
terminal?.setOption('cursorBlink', true);
|
terminal?.setOption('cursorBlink', true);
|
||||||
terminal?.focus();
|
terminal?.focus();
|
||||||
setConnectionStatus('open');
|
setConnectionStatus('open');
|
||||||
|
socket.send('export LANG=C.UTF-8\n');
|
||||||
|
socket.send('export LC_ALL=C.UTF-8\n');
|
||||||
|
socket.send('clear\n');
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue