diff options
| author | GitHub Action <[email protected]> | 2026-01-21 15:58:36 +0000 |
|---|---|---|
| committer | GitHub Action <[email protected]> | 2026-01-21 15:58:36 +0000 |
| commit | b10f4237439f6fd0754a305b53a4a318248d4597 (patch) | |
| tree | 9c6b66c48e2b6f9b7b5ce0e69fdc49bf8ea766f5 /packages/app/src/pages | |
| parent | 0059fdc1f5158fc41642b8982928c5abc25e4a4f (diff) | |
| download | opencode-b10f4237439f6fd0754a305b53a4a318248d4597.tar.gz opencode-b10f4237439f6fd0754a305b53a4a318248d4597.zip | |
chore: generate
Diffstat (limited to 'packages/app/src/pages')
| -rw-r--r-- | packages/app/src/pages/layout.tsx | 31 |
1 files changed, 27 insertions, 4 deletions
diff --git a/packages/app/src/pages/layout.tsx b/packages/app/src/pages/layout.tsx index 9d7cc9c71..7052ba003 100644 --- a/packages/app/src/pages/layout.tsx +++ b/packages/app/src/pages/layout.tsx @@ -1573,7 +1573,12 @@ export default function Layout(props: ParentProps) { keybind={command.keybind("session.archive")} gutter={8} > - <IconButton icon="archive" variant="ghost" onClick={() => archiveSession(props.session)} aria-label="Archive session" /> + <IconButton + icon="archive" + variant="ghost" + onClick={() => archiveSession(props.session)} + aria-label="Archive session" + /> </TooltipKeybind> </div> </div> @@ -1749,7 +1754,13 @@ export default function Layout(props: ParentProps) { > <DropdownMenu open={menuOpen()} onOpenChange={setMenuOpen}> <Tooltip value={language.t("common.moreOptions")} placement="top"> - <DropdownMenu.Trigger as={IconButton} icon="dot-grid" variant="ghost" class="size-6 rounded-md" aria-label="More options" /> + <DropdownMenu.Trigger + as={IconButton} + icon="dot-grid" + variant="ghost" + class="size-6 rounded-md" + aria-label="More options" + /> </Tooltip> <DropdownMenu.Portal> <DropdownMenu.Content @@ -2106,7 +2117,13 @@ export default function Layout(props: ParentProps) { </div> } > - <IconButton icon="plus" variant="ghost" size="large" onClick={chooseProject} aria-label="Open project" /> + <IconButton + icon="plus" + variant="ghost" + size="large" + onClick={chooseProject} + aria-label="Open project" + /> </Tooltip> </div> <DragOverlay> @@ -2120,7 +2137,13 @@ export default function Layout(props: ParentProps) { title={language.t("sidebar.settings")} keybind={command.keybind("settings.open")} > - <IconButton icon="settings-gear" variant="ghost" size="large" onClick={openSettings} aria-label="Settings" /> + <IconButton + icon="settings-gear" + variant="ghost" + size="large" + onClick={openSettings} + aria-label="Settings" + /> </TooltipKeybind> <Tooltip placement={sidebarProps.mobile ? "bottom" : "right"} value={language.t("sidebar.help")}> <IconButton |
