mirror of
https://github.com/tenrok/vue-ganttastic.git
synced 2026-06-25 06:50: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: {
|
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':
|
||||||
|
|||||||
Reference in New Issue
Block a user