Skip to content

Commit

Permalink
Fix npm build
Browse files Browse the repository at this point in the history
  • Loading branch information
spinn committed Jul 29, 2022
1 parent c89114f commit e592ef6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@ditdot-dev/vue-flow-form",
"author": "DITDOT",
"description": "Create conversational conditional-logic forms with Vue.js.",
"version": "2.3.0",
"version": "2.3.1",
"private": false,
"scripts": {
"serve": "vue-cli-service serve",
Expand Down
2 changes: 1 addition & 1 deletion src/components/QuestionTypes/OpinionScaleType.vue
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@
beforeMount() {
const
size = this.question.max ?? 5,
size = this.question.max || 5,
numOptions = Math.min(Math.max(size, 1), 10)
if (!this.question.options.length) {
Expand Down

0 comments on commit e592ef6

Please sign in to comment.