diff --git a/templates/index.xhtml b/templates/index.xhtml index 0cda562..a1283bd 100644 --- a/templates/index.xhtml +++ b/templates/index.xhtml @@ -1347,6 +1347,12 @@ } connectEvents(); + window.onkeydown = ((e) => { + if (e.key === "Escape") { + hideProjectSettings(); + hideTaskLogs(); + } + });