1
0
Fork 0
mirror of https://gitlab.com/bramw/baserow.git synced 2025-04-11 07:51:20 +00:00

use utc in the date picker

This commit is contained in:
Bram Wiepjes 2021-02-09 12:30:32 +01:00
parent 88d84aea2d
commit 3fe0260318
4 changed files with 4 additions and 0 deletions
changelog.md
web-frontend/modules/database/components

View file

@ -14,6 +14,7 @@
* Fixed bug where the Editable component was not working if a prent a user-select:
none; property.
* Fail hard when the web-frontend can't reach the backend because of a network error.
* Use UTC time in the date picker.
## Released (2021-02-04)

View file

@ -23,6 +23,7 @@
<date-picker
:inline="true"
:monday-first="true"
:use-utc="true"
:value="copy"
class="datepicker"
@input="chooseDate(field, $event)"

View file

@ -23,6 +23,7 @@
<date-picker
:inline="true"
:monday-first="true"
:use-utc="true"
:value="dateObject"
class="datepicker"
@input=";[setCopy($event, 'dateObject'), delayedUpdate(copy, true)]"

View file

@ -40,6 +40,7 @@
<date-picker
:inline="true"
:monday-first="true"
:use-utc="true"
:value="copy"
class="datepicker"
@input="chooseDate(field, $event)"