Skip to content

Commit

Permalink
fix: add canMoveUp/Down props to QuestionMixin
Browse files Browse the repository at this point in the history
Signed-off-by: Christian Hartmann <chris-hartmann@gmx.de>
  • Loading branch information
Chartman123 authored and susnux committed Nov 28, 2023
1 parent 036a038 commit 0703111
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 0703111

Please sign in to comment.