Skip to content

Commit

Permalink
Fix title screen should not camel case
Browse files Browse the repository at this point in the history
  • Loading branch information
urmauur committed Nov 20, 2023
1 parent c21406a commit cc68e42
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion web/containers/Layout/TopBar/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@ const TopBar = () => {
<div className="fixed left-0 top-0 z-50 flex h-12 w-full border-b border-border bg-background/50">
<div className="relative left-16 flex w-[calc(100%-64px)] items-center justify-between space-x-4 pl-6 pr-2">
<div>
<span className="font-medium">{viewStateName}</span>
<span className="font-medium">
{viewStateName.replace(/([A-Z])/g, ' $1').trim()}
</span>
</div>
<CommandSearch />
{/* Command without trigger interface */}
Expand Down

0 comments on commit cc68e42

Please sign in to comment.