@eturnity/eturnity_reusable_components 1.2.50 → 1.2.51-3d-master.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
@@ -459,12 +459,15 @@ export default {
|
|
459
459
|
return evaluated
|
460
460
|
},
|
461
461
|
onInput(value) {
|
462
|
+
return value
|
462
463
|
let evaluatedVal
|
463
464
|
try {
|
464
465
|
evaluatedVal = this.onEvaluateCode(value)
|
465
466
|
} finally {
|
466
467
|
if (evaluatedVal) {
|
467
468
|
this.$emit('on-input', evaluatedVal)
|
469
|
+
}else{
|
470
|
+
this.$emit('on-input', value)
|
468
471
|
}
|
469
472
|
}
|
470
473
|
},
|