Skip to content

Commit

Permalink
fix: changing color of beta tag for Service Map & light theme changer (
Browse files Browse the repository at this point in the history
…SigNoz#5731)

* fix: changing color of tag for Service Map in sidepanel

* fix: added geekblue and borderless in beta tag to light theme changer

* fix: removed comments
  • Loading branch information
pranay01 authored Aug 28, 2024
1 parent 3200fd0 commit 532f274
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion frontend/src/container/MySettings/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,9 @@ function MySettings(): JSX.Element {
label: (
<div className="theme-option">
<Sun size={12} data-testid="light-theme-icon" /> Light{' '}
<Tag color="magenta">Beta</Tag>
<Tag bordered={false} color="geekblue">
Beta
</Tag>
</div>
),
value: 'light',
Expand Down
4 changes: 3 additions & 1 deletion frontend/src/container/SideNav/NavItem/NavItem.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,9 @@ export default function NavItem({

{isBeta && (
<div className="nav-item-beta">
<Tag color="magenta">Beta</Tag>
<Tag bordered={false} color="geekblue">
Beta
</Tag>
</div>
)}
</div>
Expand Down

0 comments on commit 532f274

Please sign in to comment.