1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

fix return

This commit is contained in:
sancodes 2022-04-03 12:08:10 -07:00
parent 408f2b2bda
commit 95423468bb

View file

@ -51,7 +51,8 @@ import template from './accessSchedule.template.html';
};
if (parseFloat(updatedSchedule.StartHour) >= parseFloat(updatedSchedule.EndHour)) {
return alert(globalize.translate('ErrorStartHourGreaterThanEnd'));
alert(globalize.translate('ErrorStartHourGreaterThanEnd'));
return;
}
context.submitted = true;