Skip to content

Commit

Permalink
♻️ Set minute selection step to 5 minutes
Browse files Browse the repository at this point in the history
  • Loading branch information
russkyc committed May 28, 2024
1 parent 4ea0a44 commit ed5a844
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Timely/Layout/AddRecordDialog.razor
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
</TitleContent>
<DialogContent>
<MudDatePicker bind-Date="@_date" Label="Date"></MudDatePicker>
<MudTimePicker PickerVariant="PickerVariant.Dialog" AmPm="true" @bind-Time="@Shift.ShiftStart" Label="Shift Start"/>
<MudTimePicker PickerVariant="PickerVariant.Dialog" AmPm="true" @bind-Time="@Shift.ShiftEnd" Label="Shift End"/>
<MudTimePicker MinuteSelectionStep="5" PickerVariant="PickerVariant.Dialog" AmPm="true" @bind-Time="@Shift.ShiftStart" Label="Shift Start"/>
<MudTimePicker MinuteSelectionStep="5" PickerVariant="PickerVariant.Dialog" AmPm="true" @bind-Time="@Shift.ShiftEnd" Label="Shift End"/>
</DialogContent>
<DialogActions>
<MudButton OnClick="Cancel">Cancel</MudButton>
Expand Down

0 comments on commit ed5a844

Please sign in to comment.