|
|
@@ -289,9 +289,9 @@ export function SessionHeader() {
|
|
|
|
|
|
return (
|
|
|
<>
|
|
|
- <Show when={search() && centerMount()}>
|
|
|
+ <Show when={search() && centerMount()} keyed>
|
|
|
{(mount) => (
|
|
|
- <Portal mount={mount()}>
|
|
|
+ <Portal mount={mount}>
|
|
|
<Button
|
|
|
type="button"
|
|
|
variant="ghost"
|
|
|
@@ -308,10 +308,10 @@ export function SessionHeader() {
|
|
|
</span>
|
|
|
</div>
|
|
|
|
|
|
- <Show when={hotkey()}>
|
|
|
+ <Show when={hotkey()} keyed>
|
|
|
{(keybind) => (
|
|
|
<Keybind class="shrink-0 !border-0 !bg-transparent !shadow-none px-0 text-text-weaker">
|
|
|
- {keybind()}
|
|
|
+ {keybind}
|
|
|
</Keybind>
|
|
|
)}
|
|
|
</Show>
|
|
|
@@ -319,9 +319,9 @@ export function SessionHeader() {
|
|
|
</Portal>
|
|
|
)}
|
|
|
</Show>
|
|
|
- <Show when={rightMount()}>
|
|
|
+ <Show when={rightMount()} keyed>
|
|
|
{(mount) => (
|
|
|
- <Portal mount={mount()}>
|
|
|
+ <Portal mount={mount}>
|
|
|
<Show
|
|
|
when={isV2}
|
|
|
fallback={
|