forked from MapComplete/MapComplete
Fix rendering issue
This commit is contained in:
parent
2dd14028ce
commit
7a9c21f83d
2 changed files with 6 additions and 2 deletions
|
@ -360,8 +360,12 @@ class TagRendering extends UIElement implements TagDependantUIElement {
|
|||
return undefined;
|
||||
}
|
||||
|
||||
const prepost = Translations.W(freeform.template).InnerRender().split("$");
|
||||
const prepost = Translations.W(freeform.template).InnerRender()
|
||||
.replace("$$$","$string$")
|
||||
.split("$");
|
||||
const type = prepost[1];
|
||||
|
||||
console.log("PrePost:", prepost);
|
||||
|
||||
let isValid = TagRenderingOptions.inputValidation[type];
|
||||
if (isValid === undefined) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue