Skip to content

Commit 3c64537

Browse files
committed
fix(ui): enhance help method to include min and max values
Fixes #3789
1 parent f89158b commit 3c64537

File tree

1 file changed

+13
-6
lines changed

1 file changed

+13
-6
lines changed

src/components/ValueId.vue

+13-6
Original file line numberDiff line numberDiff line change
@@ -412,12 +412,19 @@ export default {
412412
return '[' + this.value.id + '] ' + this.value.label
413413
},
414414
help() {
415-
return (
416-
(this.value.description ? this.value.description + ' ' : '') +
417-
(this.value.default !== undefined && !this.value.list
418-
? `(Default: ${this.value.default})`
419-
: '')
420-
)
415+
return `${this.value.description ? `${this.value.description} ` : ''}${
416+
this.value.default !== undefined && !this.value.list
417+
? `(Default: ${this.value.default}${
418+
this.value.max !== undefined
419+
? `, max: ${this.value.max}`
420+
: ''
421+
}${
422+
this.value.min !== undefined
423+
? `, min: ${this.value.min}`
424+
: ''
425+
})`
426+
: ''
427+
}`
421428
},
422429
color: {
423430
get: function () {

0 commit comments

Comments
 (0)