2
0
mirror of https://github.com/tenrok/vue-ganttastic.git synced 2026-06-25 10:30:33 +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: { computed: {
allChildPoints() { allChildPoints() {
let start = moment(this.chartStart) const start = moment(this.chartStart)
let end = moment(this.chartEnd) const end = moment(this.chartEnd)
let res = [] const res = []
while (start.isBefore(end)) { while (start.isBefore(end)) {
switch (this.precision) { switch (this.precision) {
case 'day': case 'day':