We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fbc8f6e commit fe2cc0cCopy full SHA for fe2cc0c
1 file changed
packages/app/src/pages/layout.tsx
@@ -903,7 +903,13 @@ export default function Layout(props: ParentProps) {
903
<span class="text-14-regular text-text-strong grow-1 min-w-0 overflow-hidden text-ellipsis truncate">
904
{props.session.title}
905
</span>
906
- <Show when={props.session.summary}>{(summary) => <DiffChanges changes={summary()} />}</Show>
+ <Show when={props.session.summary}>
907
+ {(summary) => (
908
+ <div class="group-hover/session:hidden group-active/session:hidden group-focus-within/session:hidden">
909
+ <DiffChanges changes={summary()} />
910
+ </div>
911
+ )}
912
+ </Show>
913
</div>
914
</A>
915
</Tooltip>
0 commit comments