web/user: fix empty banner on application page not showing correctly (#5555)
Signed-off-by: Jens Langhammer <jens@goauthentik.io>
This commit is contained in:
parent
ac57d6e820
commit
8ccdbdc370
|
@ -238,7 +238,7 @@ export class LibraryPage extends AKElement {
|
|||
<section class="pf-c-page__main-section">
|
||||
${loading(
|
||||
this.apps,
|
||||
html`${this.filteredApps.length > 0
|
||||
html`${this.filterApps(this.filteredApps).length > 0
|
||||
? this.renderApps()
|
||||
: this.renderEmptyState()}`,
|
||||
)}
|
||||
|
|
Reference in New Issue