From 83fe3917966fb2cb25133371781a55e298ed17cd Mon Sep 17 00:00:00 2001 From: Matt Hill Date: Mon, 25 Jul 2022 12:05:44 -0600 Subject: [PATCH] replace bang with question mark in html (#1683) --- .../ui/src/app/pages/notifications/notifications.page.html | 4 ++-- frontend/projects/ui/src/app/util/has-deps.ts | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/frontend/projects/ui/src/app/pages/notifications/notifications.page.html b/frontend/projects/ui/src/app/pages/notifications/notifications.page.html index e0d9e7e63..4c23aba0d 100644 --- a/frontend/projects/ui/src/app/pages/notifications/notifications.page.html +++ b/frontend/projects/ui/src/app/pages/notifications/notifications.page.html @@ -84,7 +84,7 @@

- {{ packageData[pkgId]?.manifest!.title || pkgId }} - + {{ packageData[pkgId]?.manifest?.title || pkgId }} - {{ not.title }} @@ -112,7 +112,7 @@ View Report depId !== (pkg.manifest as any).id).length + return !!Object.keys(pkg.installed?.['current-dependents'] || {}).filter( + depId => depId !== pkg.manifest.id, + ).length }