diff --git a/code/frontend/src/app/features/dashboard/dashboard.component.html b/code/frontend/src/app/features/dashboard/dashboard.component.html index ed542ed8..9b254446 100644 --- a/code/frontend/src/app/features/dashboard/dashboard.component.html +++ b/code/frontend/src/app/features/dashboard/dashboard.component.html @@ -285,7 +285,7 @@ Upgrades (7d) - @if (stats.perInstanceStats.length > 1) { + @if (stats.perInstanceStats.length > 0) {
@for (inst of stats.perInstanceStats; track inst.instanceId) {
@@ -299,9 +299,7 @@ {{ inst.totalTracked }} tracked {{ inst.belowCutoff }} below {{ inst.atOrAboveCutoff }} met - @if (inst.recentUpgrades > 0) { - {{ inst.recentUpgrades }} upgrades - } + {{ inst.recentUpgrades }} upgrades
}