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:
parent
88d84aea2d
commit
3fe0260318
4 changed files with 4 additions and 0 deletions
changelog.md
web-frontend/modules/database/components
|
@ -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)
|
||||
|
||||
|
|
|
@ -23,6 +23,7 @@
|
|||
<date-picker
|
||||
:inline="true"
|
||||
:monday-first="true"
|
||||
:use-utc="true"
|
||||
:value="copy"
|
||||
class="datepicker"
|
||||
@input="chooseDate(field, $event)"
|
||||
|
|
|
@ -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)]"
|
||||
|
|
|
@ -40,6 +40,7 @@
|
|||
<date-picker
|
||||
:inline="true"
|
||||
:monday-first="true"
|
||||
:use-utc="true"
|
||||
:value="copy"
|
||||
class="datepicker"
|
||||
@input="chooseDate(field, $event)"
|
||||
|
|
Loading…
Add table
Reference in a new issue