Skip to content

Commit

Permalink
fix(unit-user-usage): update dropdown label to "Add Project"
Browse files Browse the repository at this point in the history
  • Loading branch information
OliverDudgeon committed Apr 8, 2024
1 parent f8620e2 commit 83314c5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion components/usage/UserUsageTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,8 @@ const ChipsInput = ({ users, value, group, username, onChange }: ChipsInputProps
<TextField
{...params}
InputProps={{ ...params.InputProps, disableUnderline: true }}
label={value.length === 0 ? "Project" : undefined}
label={value.length === 0 ? "Add Project" : undefined}
sx={{ minWidth: 100 }}
variant="standard"
/>
)}
Expand Down

0 comments on commit 83314c5

Please sign in to comment.