Skip to content

Commit 83314c5

Browse files
committed
fix(unit-user-usage): update dropdown label to "Add Project"
1 parent f8620e2 commit 83314c5

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

components/usage/UserUsageTable.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -259,7 +259,8 @@ const ChipsInput = ({ users, value, group, username, onChange }: ChipsInputProps
259259
<TextField
260260
{...params}
261261
InputProps={{ ...params.InputProps, disableUnderline: true }}
262-
label={value.length === 0 ? "Project" : undefined}
262+
label={value.length === 0 ? "Add Project" : undefined}
263+
sx={{ minWidth: 100 }}
263264
variant="standard"
264265
/>
265266
)}

0 commit comments

Comments
 (0)