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:
@@ -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':
|
||||
|
||||
Reference in New Issue
Block a user