diff --git a/src/components/tasks/gantt-component.vue b/src/components/tasks/gantt-component.vue index 1dc3f8174..27c07a685 100644 --- a/src/components/tasks/gantt-component.vue +++ b/src/components/tasks/gantt-component.vue @@ -37,11 +37,13 @@ :highlight-on-hover="true" > - - - @@ -546,7 +548,6 @@ export default { const bar = e.movedBars.entries().next().value[0] const index = this.theTasks.findIndex(t => t.id === bar.id) const task = this.theTasks[index] - console.log(bar, task) task.startDate = new Date(bar.start) task.endDate = new Date(bar.end) this.$set(this.theTasks, index, task) diff --git a/src/styles/components/gantt.scss b/src/styles/components/gantt.scss index adab07e59..7151dad00 100644 --- a/src/styles/components/gantt.scss +++ b/src/styles/components/gantt.scss @@ -246,12 +246,22 @@ $gantt-vertical-border-color: $grey-100; .g-gantt-bar { border-radius: 6px !important; overflow: visible !important; + cursor: grab; + + &:active { + cursor: grabbing; + } .g-gantt-bar-label { font-size: .85rem; - justify-content: start; + justify-content: space-between; padding: 0 .5rem !important; overflow: hidden; + + .edit-task-link { + color: inherit; + padding: 0 .25rem; + } } .g-gantt-bar-handle-left, .g-gantt-bar-handle-right {