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:
Jens L 2023-05-09 21:12:58 +02:00 committed by GitHub
parent ac57d6e820
commit 8ccdbdc370
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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()}`,
)}