fix(editor): Tweak dragged mapping state (#4550)

* fix(editor): show input value when dragging

* fix(editor): show input value when dragging

* fix(editor): add back some input value hiding logic
This commit is contained in:
Csaba Tuncsik 2022-11-09 16:05:42 +01:00 committed by GitHub
parent 698d96a617
commit b3cd62d866
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -492,7 +492,7 @@ export default mixins(
return value.slice(1);
}
return '';
return `${this.displayValue ?? ''}`;
},
isValueExpression(): boolean {
return isValueExpression(this.parameter, this.value);