Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Make number input full width
  • Loading branch information
BrunoQuaresma committed May 13, 2024
commit cac3a890f4ea5611a48d51dd2fa7212e3d6f16e4
2 changes: 1 addition & 1 deletion site/src/components/DurationField/DurationField.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ export const DurationField: FC<DurationFieldProps> = (props) => {
>
<TextField
{...textFieldProps}
css={{ maxWidth: 160 }}
fullWidth
value={state.durationFieldValue}
onChange={(e) => {
const durationFieldValue = intMask(e.currentTarget.value);
Expand Down