Skip to content

Commit

Permalink
fix: hide reset button if selected time is 30m
Browse files Browse the repository at this point in the history
  • Loading branch information
ahmadshaheer committed Sep 2, 2024
1 parent 7f0a219 commit a454edf
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -598,7 +598,7 @@ function DateTimeSelection({

return (
<div className="date-time-selector">
{showResetButton && (
{showResetButton && selectedTime !== defaultRelativeTime && (
<FormItem>
<Button
type="default"
Expand Down

0 comments on commit a454edf

Please sign in to comment.