Skip to content

Commit

Permalink
Merge pull request #1806 from nextcloud/fix/move-question
Browse files Browse the repository at this point in the history
fix: add canMoveUp/Down props to QuestionMixin
  • Loading branch information
susnux authored Nov 28, 2023
2 parents 036a038 + 0703111 commit 6effd75
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions src/mixins/QuestionMixin.js
Original file line number Diff line number Diff line change
Expand Up @@ -154,6 +154,22 @@ export default {
return {}
},
},

/**
* Can question be moved up in order?
*/
canMoveUp: {
type: Boolean,
default: false,
},

/**
* Can question be moved down in order?
*/
canMoveDown: {
type: Boolean,
default: false,
},
},

components: {
Expand Down

0 comments on commit 6effd75

Please sign in to comment.