treat different types for module block

This commit is contained in:
2025-04-25 16:14:38 +02:00
parent 273821e191
commit 54d77218cd
2 changed files with 10 additions and 4 deletions

View File

@ -276,7 +276,7 @@ function updateValue(component) {
for (var j = 0; j < matches.length; j++) {
let elem = matches[j];
let type = elem.__ctype__; // -> Show Dom-Properties
if (type == "rdonly" || type == "rdlink") {
if (type == "rdonly" || type == "none") {
let text = htmlEscape(component.formatted);
if (text) {
elem.innerHTML = text;