diff options
| author | David Hill <[email protected]> | 2026-01-18 00:51:35 +0000 |
|---|---|---|
| committer | David Hill <[email protected]> | 2026-01-18 00:51:35 +0000 |
| commit | c3ab76c8ad90fb7ef99604e8ef0a1017c5ddda58 (patch) | |
| tree | ef313c6ad68a5c00555610169ab0bf47d8c65e6c | |
| parent | 389d97ece9a08907c2c101ba18ae5712dfe9b8fd (diff) | |
| download | opencode-c3ab76c8ad90fb7ef99604e8ef0a1017c5ddda58.tar.gz opencode-c3ab76c8ad90fb7ef99604e8ef0a1017c5ddda58.zip | |
fix: increase max-width of session name tooltip
| -rw-r--r-- | packages/app/src/pages/layout.tsx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/packages/app/src/pages/layout.tsx b/packages/app/src/pages/layout.tsx index 2a488ec49..6c860d98e 100644 --- a/packages/app/src/pages/layout.tsx +++ b/packages/app/src/pages/layout.tsx @@ -1119,7 +1119,8 @@ export default function Layout(props: ParentProps) { placement="top-start" value={props.session.title} gutter={0} - openDelay={2000} + openDelay={3000} + contentStyle={{ maxWidth: "640px" }} class="grow-1 min-w-0" > <InlineEditor |
