chore: generate

This commit is contained in:
GitHub Action
2026-01-20 16:57:52 +00:00
parent 8639b0767a
commit dfe6ce211d
2 changed files with 13 additions and 2 deletions

View File

@@ -34,7 +34,14 @@ export function DialogSelectFile() {
const view = createMemo(() => layout.view(sessionKey()))
const state = { cleanup: undefined as (() => void) | void, committed: false }
const [grouped, setGrouped] = createSignal(false)
const common = ["session.new", "workspace.new", "session.previous", "session.next", "terminal.toggle", "review.toggle"]
const common = [
"session.new",
"workspace.new",
"session.previous",
"session.next",
"terminal.toggle",
"review.toggle",
]
const limit = 5
const allowed = createMemo(() =>

View File

@@ -2156,7 +2156,11 @@ export default function Layout(props: ParentProps) {
>
<>
<div class="py-4 px-3">
<TooltipKeybind title="New workspace" keybind={command.keybind("workspace.new")} placement="top">
<TooltipKeybind
title="New workspace"
keybind={command.keybind("workspace.new")}
placement="top"
>
<Button size="large" icon="plus-small" class="w-full" onClick={createWorkspace}>
New workspace
</Button>