Skip to content
Snippets Groups Projects
Commit 9608546d authored by Petar Hristov's avatar Petar Hristov :speech_balloon:
Browse files

Fix: Placeholder replacement

parent 881f64d9
Branches Hotfix/2233-fixMe
Tags
2 merge requests!104Chore: 3.0.5,!102Fix: Placeholder replacement
......@@ -469,7 +469,12 @@ export default defineComponent({
fixedValueList &&
fixedValueList.some((entry) => entry.value !== '')
) {
this.input(this.valueTypesToQuadObjects(fixedValueList));
if (
!this.values.length ||
this.values.every((entry) => entry.value === '')
) {
this.input(this.valueTypesToQuadObjects(fixedValueList));
}
this.locked = true;
}
const invisibleList =
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment