fix: wrong thick stick in view mode 'Month'
This commit is contained in:
parent
76be9de801
commit
c6e0b50ff5
@ -391,10 +391,7 @@ export default class Gantt {
|
||||
tick_class += ' thick';
|
||||
}
|
||||
// thick ticks for quarters
|
||||
if (
|
||||
this.view_is(VIEW_MODE.MONTH) &&
|
||||
(date.getMonth() + 1) % 3 === 0
|
||||
) {
|
||||
if (this.view_is(VIEW_MODE.MONTH) && date.getMonth() % 3 === 0) {
|
||||
tick_class += ' thick';
|
||||
}
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user