fix(gantt): use function to create default date
This commit is contained in:
parent
f4545fbe2f
commit
cd10bc9d7a
1 changed files with 2 additions and 2 deletions
|
@ -201,10 +201,10 @@ export default {
|
||||||
default: false,
|
default: false,
|
||||||
},
|
},
|
||||||
dateFrom: {
|
dateFrom: {
|
||||||
default: new Date(new Date().setDate(new Date().getDate() - 15)),
|
default: () => new Date(new Date().setDate(new Date().getDate() - 15)),
|
||||||
},
|
},
|
||||||
dateTo: {
|
dateTo: {
|
||||||
default: new Date(new Date().setDate(new Date().getDate() + 30)),
|
default: () => new Date(new Date().setDate(new Date().getDate() + 30)),
|
||||||
},
|
},
|
||||||
// The width of a day in pixels, used to calculate all sorts of things.
|
// The width of a day in pixels, used to calculate all sorts of things.
|
||||||
dayWidth: {
|
dayWidth: {
|
||||||
|
|
Loading…
Reference in a new issue