From 58a4b472889c93a28804d9eb25749000b51ab8cc Mon Sep 17 00:00:00 2001 From: Thomas <4159106+dtslvr@users.noreply.github.com> Date: Sat, 18 Dec 2021 09:18:23 +0100 Subject: [PATCH] Fix hidden values (0) --- .../src/app/pages/about/about-page.html | 29 ++++++++++++++----- 1 file changed, 22 insertions(+), 7 deletions(-) diff --git a/apps/client/src/app/pages/about/about-page.html b/apps/client/src/app/pages/about/about-page.html index a8462f5c1..e9e9482a8 100644 --- a/apps/client/src/app/pages/about/about-page.html +++ b/apps/client/src/app/pages/about/about-page.html @@ -108,8 +108,11 @@
-

- {{ statistics?.activeUsers1d ?? '-' }} +

+ {{ statistics?.activeUsers1d || '-' }}

Active Users 
-

+

{{ statistics?.activeUsers7d ?? '-' }}

@@ -128,7 +134,10 @@
-

+

{{ statistics?.activeUsers30d ?? '-' }}

@@ -138,7 +147,7 @@
-

+

{{ statistics?.newUsers30d ?? '-' }}

@@ -148,13 +157,19 @@
-

+

{{ statistics?.gitHubContributors ?? '-' }}

Contributors on GitHub
-

+

{{ statistics?.gitHubStargazers ?? '-' }}

Stars on GitHub