feat: continued post qa for servers in app (#5818)

* fix: intercom in app

* feat: Logs.vue dynamic console resizing with window + padding problem

* fix: search highlight with decorator + change to be better

* fix: qa

* fix: allow paper+purpur into app csp

* fix: lint
This commit is contained in:
Calum H.
2026-04-15 21:16:05 +02:00
committed by GitHub
parent 37b0f7ff98
commit 3d5f29a7a2
15 changed files with 379 additions and 86 deletions

View File

@@ -193,6 +193,17 @@ export function useTerminal(options: UseTerminalOptions): UseTerminalReturn {
term.options.disableStdin = true
term.write('\x1b[?25l')
// term.attachCustomKeyEventHandler((e) => {
// if (e.type !== 'keydown') return true
// const mod = e.ctrlKey || e.metaKey
// if (!mod) return true
// const key = e.key.toLowerCase()
// if (key === 'c' || key === 'insert' || key === 'a') {
// return false
// }
// return true
// })
wheelHandler = (e: WheelEvent) => {
e.preventDefault()
}