mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-22 06:30:59 +01:00
Fix link search did not always show label for initial value
This commit is contained in:
parent
021fc9f136
commit
4367afaf27
@ -110,6 +110,7 @@ export class Et2LinkSearch extends Et2Select
|
|||||||
label: Et2Link.MISSING_TITLE,
|
label: Et2Link.MISSING_TITLE,
|
||||||
class: "loading"
|
class: "loading"
|
||||||
}
|
}
|
||||||
|
|
||||||
// Weird call instead of just unshift() to make sure to trigger setter
|
// Weird call instead of just unshift() to make sure to trigger setter
|
||||||
this.select_options = Object.assign([option], this.__select_options);
|
this.select_options = Object.assign([option], this.__select_options);
|
||||||
this.egw()?.link_title(this.app, option.value, true).then(title =>
|
this.egw()?.link_title(this.app, option.value, true).then(title =>
|
||||||
@ -117,10 +118,13 @@ export class Et2LinkSearch extends Et2Select
|
|||||||
option.label = title || Et2Link.MISSING_TITLE;
|
option.label = title || Et2Link.MISSING_TITLE;
|
||||||
option.class = "";
|
option.class = "";
|
||||||
// It's probably already been rendered, find the item
|
// It's probably already been rendered, find the item
|
||||||
let item = this.getAllOptions().find(i => i.value === option.value);
|
let item = this.select?.querySelector('[value="' + option.value + '"]');
|
||||||
if(item)
|
if(item)
|
||||||
{
|
{
|
||||||
item.textContent = title;
|
// Replace instead of changing the whole thing to preserve LitElement marker comments
|
||||||
|
item.innerHTML = item.innerHTML.replace(Et2Link.MISSING_TITLE, title);
|
||||||
|
this.select.requestUpdate("value");
|
||||||
|
|
||||||
item.classList.remove("loading");
|
item.classList.remove("loading");
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
Loading…
Reference in New Issue
Block a user