Skip to content

Commit 6f37169

Browse files
maze-runnarabhinavk96
authored andcommitted
fix : error message in crete event date section (#3573)
Start date & time should be before End date and time
1 parent 8614e4c commit 6f37169

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

app/components/forms/wizard/basic-details-step.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ export default Component.extend(FormMixin, EventWizardMixin, {
168168
},
169169
{
170170
type : 'checkDates',
171-
prompt : this.l10n.t('Start date & time should be after End date and time')
171+
prompt : this.l10n.t('Start date & time should be before End date and time')
172172
}
173173
]
174174
},
@@ -185,7 +185,7 @@ export default Component.extend(FormMixin, EventWizardMixin, {
185185
},
186186
{
187187
type : 'checkDates',
188-
prompt : this.l10n.t('Start date & time should be after End date and time')
188+
prompt : this.l10n.t('Start date & time should be before End date and time')
189189
}
190190
]
191191
},

0 commit comments

Comments
 (0)