Skip to content

Commit

Permalink
Update Console.tsx
Browse files Browse the repository at this point in the history
  • Loading branch information
kokofixcomputers authored Oct 8, 2024
1 parent 9c077db commit 64a6976
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resources/scripts/components/server/console/Console.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ export default () => {
const { connected, instance } = ServerContext.useStoreState((state) => state.socket);
const isTransferring = ServerContext.useStoreState((state) => state.server.data!.isTransferring);
const [history, setHistory] = usePersistedState<string[]>(`${serverId}:command_history`, []);
const TERMINAL_PRELUDE = `\u001b[1m\u001b[33m${settingsData.consolemessagename}: \u001b[0m`;
const TERMINAL_PRELUDE = `\u001b[1m\u001b[33m${settingsData?.consolemessagename ?? 'Jexactyl-fork'}: \u001b[0m`;

const zIndex = `
.xterm-search-bar__addon {
Expand Down

0 comments on commit 64a6976

Please sign in to comment.