Skip to content

Commit

Permalink
Add mixin
Browse files Browse the repository at this point in the history
  • Loading branch information
ErikVerheul committed Nov 29, 2020
1 parent aab0701 commit e03d13d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/components/views/planning_board/TaskColumn.vue
Original file line number Diff line number Diff line change
Expand Up @@ -37,14 +37,14 @@
</template>

<script>
import { authorization } from '../../mixins/generic.js'
import { authorization, utilities } from '../../mixins/generic.js'
import Draggable from 'vuedraggable'
import TaskItem from './TaskItem'
const TASKLEVEL = 6
export default {
mixins: [authorization],
mixins: [authorization, utilities],
name: 'TaskColumn',
props: ['productId', 'storyId', 'storyTitle', 'tasks', 'title', 'state', 'idx'],
components: {
Expand Down
4 changes: 2 additions & 2 deletions src/components/views/planning_board/TaskItem.vue
Original file line number Diff line number Diff line change
Expand Up @@ -67,11 +67,11 @@
</template>

<script>
import { authorization } from '../../mixins/generic.js'
import { authorization, utilities } from '../../mixins/generic.js'
const TASKLEVEL = 6
export default {
mixins: [authorization],
mixins: [authorization, utilities],
name: 'TaskItem',
props: ['productId', 'storyId', 'storyTitle', 'state', 'columnName', 'item'],
Expand Down

0 comments on commit e03d13d

Please sign in to comment.