diff --git a/src/components/lists/views/Kanban.vue b/src/components/lists/views/Kanban.vue
index 1e643f5b..406cfb91 100644
--- a/src/components/lists/views/Kanban.vue
+++ b/src/components/lists/views/Kanban.vue
@@ -57,7 +57,12 @@
Done
- #{{ task.id }}
+
+ #{{ task.index }}
+
+
+ #{{ task.index }}
+
{
@@ -379,7 +388,10 @@
return
}
- const newBucket = new BucketModel({title: this.newBucketTitle, listId: parseInt(this.$route.params.listId)})
+ const newBucket = new BucketModel({
+ title: this.newBucketTitle,
+ listId: parseInt(this.$route.params.listId)
+ })
this.$store.dispatch('kanban/createBucket', newBucket)
.then(() => {