We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f89158b commit 3c64537Copy full SHA for 3c64537
src/components/ValueId.vue
@@ -412,12 +412,19 @@ export default {
412
return '[' + this.value.id + '] ' + this.value.label
413
},
414
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
- )
+ return `${this.value.description ? `${this.value.description} ` : ''}${
+ this.value.default !== undefined && !this.value.list
+ ? `(Default: ${this.value.default}${
+ this.value.max !== undefined
+ ? `, max: ${this.value.max}`
+ : ''
421
+ }${
422
+ this.value.min !== undefined
423
+ ? `, min: ${this.value.min}`
424
425
+ })`
426
427
+ }`
428
429
color: {
430
get: function () {
0 commit comments