Browse Source

Addresses #5731 - offset the UTC offset in ISO strings to allow date only columns in external DBs to save the correct date when in a timezone differing from UTC.

pull/5873/head
mike12345567 4 years ago
parent
commit
0049375c2d
  1. 5
      packages/bbui/src/Form/Core/DatePicker.svelte

5
packages/bbui/src/Form/Core/DatePicker.svelte

@ -58,6 +58,11 @@
if (timeOnly) {
newValue = `2000-01-01T${newValue.split("T")[1]}`
}
// date only, offset for timezone so always right date
else if (!enableTime) {
const offset = dates[0].getTimezoneOffset() * 60000
newValue = new Date(dates[0].getTime() - offset).toISOString()
}
dispatch("change", newValue)
}

Loading…
Cancel
Save