mirror of
https://github.com/pterodactyl/panel.git
synced 2024-11-22 00:52:43 +01:00
ui(server): fix console searchbar z-index (#4587)
This commit is contained in:
parent
1bb1b13f6d
commit
a4e547dc67
@ -66,6 +66,11 @@ export default () => {
|
||||
const isTransferring = ServerContext.useStoreState((state) => state.server.data!.isTransferring);
|
||||
const [history, setHistory] = usePersistedState<string[]>(`${serverId}:command_history`, []);
|
||||
const [historyIndex, setHistoryIndex] = useState(-1);
|
||||
// SearchBarAddon has hardcoded z-index: 999 :(
|
||||
const zIndex = `
|
||||
.xterm-search-bar__addon {
|
||||
z-index: 10;
|
||||
}`;
|
||||
|
||||
const handleConsoleOutput = (line: string, prelude = false) =>
|
||||
terminal.writeln((prelude ? TERMINAL_PRELUDE : '') + line.replace(/(?:\r\n|\r|\n)$/im, '') + '\u001b[0m');
|
||||
@ -126,6 +131,7 @@ export default () => {
|
||||
|
||||
terminal.open(ref.current);
|
||||
fitAddon.fit();
|
||||
searchBar.addNewStyle(zIndex);
|
||||
|
||||
// Add support for capturing keys
|
||||
terminal.attachCustomKeyEventHandler((e: KeyboardEvent) => {
|
||||
|
Loading…
Reference in New Issue
Block a user