Et2LinkAppSelect: Make proper SelectOptions out of app list

This commit is contained in:
nathan 2022-08-03 15:30:22 -06:00
parent 6b072932bd
commit ed92763176

View File

@ -203,7 +203,10 @@ export class Et2LinkAppSelect extends SlotMixin(Et2Select)
}
else if(this.applicationList.length > 0)
{
select_options = this.applicationList;
select_options = this.applicationList.map((app) =>
{
return {value: app, label: this.egw().lang(app)};
});
}
else
{