Skip to content

chore(site): make info gray #14356

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 13 commits into from
Aug 20, 2024
Prev Previous commit
Next Next commit
fix user status colors
  • Loading branch information
aslilac committed Aug 19, 2024
commit 2c939d04c1372f9e54e57b92d1b7066a7d7bef88
4 changes: 2 additions & 2 deletions site/src/pages/UsersPage/UsersFilter.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,12 @@ export const useStatusFilterMenu = ({
{
value: "dormant",
label: "Dormant",
startIcon: <StatusIndicator color="notice" />,
startIcon: <StatusIndicator color="warning" />,
},
{
value: "suspended",
label: "Suspended",
startIcon: <StatusIndicator color="warning" />,
startIcon: <StatusIndicator color="inactive" />,
},
];
return useFilterMenu({
Expand Down
Loading