From 65c69090fd6789a12368aad90e840018c03a8da9 Mon Sep 17 00:00:00 2001 From: Alex Date: Tue, 4 Nov 2025 22:18:10 -0500 Subject: [PATCH] hasCiphers conditional --- .../all-applications/all-applications.component.html | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bitwarden_license/bit-web/src/app/dirt/access-intelligence/all-applications/all-applications.component.html b/bitwarden_license/bit-web/src/app/dirt/access-intelligence/all-applications/all-applications.component.html index de5441b9e97..834fa026673 100644 --- a/bitwarden_license/bit-web/src/app/dirt/access-intelligence/all-applications/all-applications.component.html +++ b/bitwarden_license/bit-web/src/app/dirt/access-intelligence/all-applications/all-applications.component.html @@ -2,7 +2,8 @@ } @else { @let drawerDetails = dataService.drawerDetails$ | async; - @if (!dataSource.data.length) { + @let hasCiphers = dataService.hasCiphers$ | async; + @if (!dataSource.data.length && !hasCiphers) {