mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-02-02 11:29:23 +01:00
Fix new account does not update but stays at "loading"
This commit is contained in:
parent
c709c63152
commit
a84dbd4c25
@ -604,7 +604,7 @@ export class Et2Tree extends Et2WidgetWithSelectMixin(LitElement) implements Fin
|
||||
return Promise.resolve();
|
||||
}
|
||||
return this.handleLazyLoading(item).then((result) => {
|
||||
item.item = [...result.item]
|
||||
Object.assign(item, result);
|
||||
this.requestUpdate("_selectOptions")
|
||||
})
|
||||
}
|
||||
|
@ -680,7 +680,8 @@ app.classes.mail = AppJS.extend(
|
||||
|
||||
tree._selectOptions.push({
|
||||
id: "" + _id,
|
||||
label: this.egw.lang("Loading..."),
|
||||
// Use text instead of label because server side is only sending text
|
||||
text: this.egw.lang("Loading..."),
|
||||
selected: false,
|
||||
loading: true,
|
||||
lazy: true
|
||||
|
Loading…
Reference in New Issue
Block a user