Skip to content

Commit e592ef6

Browse files
committed
Fix npm build
1 parent c89114f commit e592ef6

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "@ditdot-dev/vue-flow-form",
33
"author": "DITDOT",
44
"description": "Create conversational conditional-logic forms with Vue.js.",
5-
"version": "2.3.0",
5+
"version": "2.3.1",
66
"private": false,
77
"scripts": {
88
"serve": "vue-cli-service serve",

src/components/QuestionTypes/OpinionScaleType.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@
6666
6767
beforeMount() {
6868
const
69-
size = this.question.max ?? 5,
69+
size = this.question.max || 5,
7070
numOptions = Math.min(Math.max(size, 1), 10)
7171
7272
if (!this.question.options.length) {

0 commit comments

Comments
 (0)