Skip to content

Commit

Permalink
Always render the portal for the assist title to go into (#26733)
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanclark committed May 22, 2023
1 parent b230dba commit 821b9c3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion web/packages/teleport/src/Assist/ConversationTitle.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export function ConversationTitle() {
);

if (conversation) {
return <> - {conversation.title}</>;
return <>{conversation.title}</>;
}
}

Expand Down
3 changes: 1 addition & 2 deletions web/packages/teleport/src/TopBar/TopBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -72,10 +72,9 @@ export function TopBar() {
{!hasClusterUrl && (
<Text fontSize="18px" bold>
{title}

<span id="topbar-portal"></span>
</Text>
)}
<Text fontSize="18px" id="topbar-portal" ml={2}></Text>
<ClusterSelector
value={clusterId}
width="384px"
Expand Down

0 comments on commit 821b9c3

Please sign in to comment.