mirror of
https://github.com/wekan/wekan.git
synced 2025-12-22 18:30:13 +01:00
Enhancement: set card times more sensible using the 'Today' button in datepicker
This commit is contained in:
parent
13a2bd6380
commit
0fb15888bc
2 changed files with 7 additions and 6 deletions
|
|
@ -105,7 +105,7 @@ Template.dateBadge.helpers({
|
|||
// editCardReceivedDatePopup
|
||||
(class extends DatePicker {
|
||||
onCreated() {
|
||||
super.onCreated();
|
||||
super.onCreated(moment().format("YYYY-MM-DD HH:mm"));
|
||||
this.data().getReceived() &&
|
||||
this.date.set(moment(this.data().getReceived()));
|
||||
}
|
||||
|
|
@ -122,7 +122,7 @@ Template.dateBadge.helpers({
|
|||
// editCardStartDatePopup
|
||||
(class extends DatePicker {
|
||||
onCreated() {
|
||||
super.onCreated();
|
||||
super.onCreated(moment().format("YYYY-MM-DD HH:mm"));
|
||||
this.data().getStart() && this.date.set(moment(this.data().getStart()));
|
||||
}
|
||||
|
||||
|
|
@ -148,7 +148,7 @@ Template.dateBadge.helpers({
|
|||
// editCardDueDatePopup
|
||||
(class extends DatePicker {
|
||||
onCreated() {
|
||||
super.onCreated();
|
||||
super.onCreated('1970-01-01 17:00:00');
|
||||
this.data().getDue() && this.date.set(moment(this.data().getDue()));
|
||||
}
|
||||
|
||||
|
|
@ -171,7 +171,7 @@ Template.dateBadge.helpers({
|
|||
// editCardEndDatePopup
|
||||
(class extends DatePicker {
|
||||
onCreated() {
|
||||
super.onCreated();
|
||||
super.onCreated(moment().format("YYYY-MM-DD HH:mm"));
|
||||
this.data().getEnd() && this.date.set(moment(this.data().getEnd()));
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue