diff --git a/api/js/etemplate/Et2Link/Et2LinkList.ts b/api/js/etemplate/Et2Link/Et2LinkList.ts index 5ee984c82e..bac932b1ba 100644 --- a/api/js/etemplate/Et2Link/Et2LinkList.ts +++ b/api/js/etemplate/Et2Link/Et2LinkList.ts @@ -582,9 +582,10 @@ export class Et2LinkList extends Et2LinkString { // Append "" to make sure it's a string, not undefined remark.classList.remove("loading"); - // Update internal data - link.comment = comment + ""; - remark.value = link.comment; + // Update internal data & displayed comment + remark.value = link.remark = comment + ""; + // Update link widget + remark.parentElement.querySelector("et2-link").value = link; } }); }