2
0
mirror of https://github.com/tenrok/vue-ganttastic.git synced 2026-06-19 22:10:34 +03:00

Update lib/components/GGanttGrid.vue

Co-authored-by: Diego Galeano <diegood@users.noreply.github.com>
This commit is contained in:
2021-11-18 12:38:02 +03:00
committed by GitHub
parent 6f605a7598
commit 293481df97
+3 -3
View File
@@ -40,9 +40,9 @@ export default {
computed: {
allChildPoints() {
let start = moment(this.chartStart)
let end = moment(this.chartEnd)
let res = []
const start = moment(this.chartStart)
const end = moment(this.chartEnd)
const res = []
while (start.isBefore(end)) {
switch (this.precision) {
case 'day':