sources/ldap: fix parent_group not being applied

closes #2464

Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org>
This commit is contained in:
Jens Langhammer
2022-03-14 22:11:26 +01:00
parent dcaa8d6322
commit a3df414f24
4 changed files with 18 additions and 11 deletions

View File

@ -165,9 +165,9 @@ export class LibraryPage extends LitElement {
<section class="pf-c-page__main-section">
${loading(
this.apps,
html`${((this.apps?.results || []).filter((app) => {
html`${(this.apps?.results || []).filter((app) => {
return app.launchUrl !== null;
})).length > 0
}).length > 0
? this.renderApps(config)
: this.renderEmptyState()}`,
)}