Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Enhancement: Add Date and Time Inputs to Export Component with Time Validation #6750

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
Update web/src/routes/Export.jsx
Co-authored-by: Blake Blackshear <[email protected]>
  • Loading branch information
skrashevich and blakeblackshear committed Jun 11, 2023
commit e8527f9b69bb5f3f43f1f9ff9ec7f34a9965e19f
2 changes: 1 addition & 1 deletion web/src/routes/Export.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ export default function Export() {
const end = new Date(`${endDate}T${endTime}`).getTime() / 1000;

if (end <= start) {
setMessage({ text: 'The end time must be larger than the start time.', error: true });
setMessage({ text: 'The end time must be after the start time.', error: true });
return;
}

Expand Down