Fixed bug where timezone wasn't adjusting correctly when adding or editing a show
This commit is contained in:
parent
e6b9a71d00
commit
d467714f84
1 changed files with 2 additions and 0 deletions
|
@ -346,6 +346,8 @@ function setAddShowEvents(form) {
|
||||||
startTimeField.val(json.start.time);
|
startTimeField.val(json.start.time);
|
||||||
endDateField.val(json.end.date);
|
endDateField.val(json.end.date);
|
||||||
endTimeField.val(json.end.time);
|
endTimeField.val(json.end.time);
|
||||||
|
// Change the timezone now that we've updated the times
|
||||||
|
currentTimezone = newTimezone;
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue