Skip to content

Commit

Permalink
add missing props to select timezone
Browse files Browse the repository at this point in the history
  • Loading branch information
daniele-mng committed Aug 6, 2024
1 parent 9bddc88 commit 1e77adc
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/web/pages/schedules/__tests__/dialog.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ const {
} = recurrence;

describe('ScheduleDialog component tests', () => {
test.only('should render with default values', () => {
test('should render with default values', () => {
const {baseElement} = render(
<ScheduleDialog
id={scheduleId}
Expand Down
1 change: 1 addition & 0 deletions src/web/wizard/advancedtaskwizard.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -248,6 +248,7 @@ const AdvancedTaskWizard = ({
/>
</Column>
<TimeZoneSelect
name="start_timezone"
label={_('Timezone')}
value={state.start_timezone}
onChange={onValueChange}
Expand Down
1 change: 1 addition & 0 deletions src/web/wizard/modifytaskwizard.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -163,6 +163,7 @@ const ModifyTaskWizard = ({

<TimeZoneSelect
name="start_timezone"
label={_('Timezone')}
value={state.start_timezone}
onChange={onValueChange}
/>
Expand Down

0 comments on commit 1e77adc

Please sign in to comment.