Fix link-string in nextmatch did not show values

This commit is contained in:
nathan 2024-10-15 09:06:08 -06:00
parent d574a85cd1
commit 42c869c70f

View File

@ -47,6 +47,10 @@ export class Et2LinkString extends Et2Widget(LitElement) implements et2_IDetache
display: inline; display: inline;
} }
et2-link::part(icon) {
display: none;
}
et2-link:hover { et2-link:hover {
text-decoration: underline; text-decoration: underline;
} }
@ -379,6 +383,7 @@ export class Et2LinkString extends Et2Widget(LitElement) implements et2_IDetache
for(let k in _values) for(let k in _values)
{ {
this[k] = _values[k]; this[k] = _values[k];
this.requestUpdate(k);
} }
} }
} }