diff --git a/src/components/TaskListEntry.vue b/src/components/TaskListEntry.vue index 5f085b0..550873e 100644 --- a/src/components/TaskListEntry.vue +++ b/src/components/TaskListEntry.vue @@ -16,14 +16,14 @@ import axios from 'axios' export default { name: 'TaskListEntry', - data: function () { + data () { return { assignee: {}, branch: {} } }, props: ['task'], - created: function () { + created () { if (this.task.assignee_id) { this.getAssignee(this.task.assignee_id) }