diff --git a/frontend/src/ts/ui.ts b/frontend/src/ts/ui.ts index 6057945a1..d2fc91a23 100644 --- a/frontend/src/ts/ui.ts +++ b/frontend/src/ts/ui.ts @@ -47,7 +47,11 @@ function updateKeytips(): void { const commandKey = Config.quickRestart === "esc" ? "tab" : "esc"; $("footer .keyTips").html(` - ${Config.quickRestart} - restart test
+ ${ + Config.quickRestart == "off" + ? "tab + enter" + : `${Config.quickRestart}` + } - restart test
${commandKey} or ${modifierKey}+shift+p - command line`); }