fix(tui): hide single session tab (#39408)
This commit is contained in:
parent
40c4c3918a
commit
43383d4fba
1 changed files with 1 additions and 1 deletions
|
|
@ -1185,7 +1185,7 @@ function App(props: { pair?: DialogPairCredentials }) {
|
|||
<box flexGrow={1} minWidth={0} flexDirection="column">
|
||||
<Show when={plugins.ready()}>
|
||||
<box flexGrow={1} minHeight={0} flexDirection="column">
|
||||
<Show when={sessionTabs.enabled() && sessionTabs.tabs().length > 0 && route.data.type !== "plugin"}>
|
||||
<Show when={sessionTabs.enabled() && sessionTabs.tabs().length > 1 && route.data.type !== "plugin"}>
|
||||
<SessionTabs />
|
||||
</Show>
|
||||
<Switch>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue