From 27ef57bad9b2e7c0847902bb6b54646345c7fa14 Mon Sep 17 00:00:00 2001
From: Mike Gibson
status: t(
"health.statuses." +
(health.result.error ? "down" : health.result.status)
- )
+ ),
})
}}
diff --git a/webui/src/app/health/health-widget.component.html b/webui/src/app/health/health-widget.component.html
index 486a356c..a8a3a807 100644
--- a/webui/src/app/health/health-widget.component.html
+++ b/webui/src/app/health/health-widget.component.html
@@ -4,7 +4,7 @@
[class]="'health-icon ' + 'health-icon-' + health.result.status"
[matTooltip]="
t('health.bitmagnet_is_status', {
- status: t('health.statuses.' + health.result.status)
+ status: t('health.statuses.' + health.result.status),
})
"
(click)="dialog.open(healthDialog)"
@@ -19,7 +19,7 @@
status: t(
"health.statuses." +
(health.result.error ? "down" : health.result.status)
- )
+ ),
})
}}
diff --git a/webui/src/app/paginator/paginator.component.html b/webui/src/app/paginator/paginator.component.html
index e559bd4f..5fdf57b0 100644
--- a/webui/src/app/paginator/paginator.component.html
+++ b/webui/src/app/paginator/paginator.component.html
@@ -19,14 +19,14 @@
t("paginator.x_to_y_of_z", {
x: (firstItemIndex | number),
y: (lastItemIndex | number),
- z: totalLength ?? 0 | intEstimate: totalIsEstimate
+ z: totalLength ?? 0 | intEstimate: totalIsEstimate,
})
}}
} @else {
{{
t("paginator.x_to_y", {
x: (firstItemIndex | number),
- y: (lastItemIndex | number)
+ y: (lastItemIndex | number),
})
}}
}
diff --git a/webui/src/app/torrents/torrent-content.component.html b/webui/src/app/torrents/torrent-content.component.html
index 4a9a1578..5d6ccb5d 100644
--- a/webui/src/app/torrents/torrent-content.component.html
+++ b/webui/src/app/torrents/torrent-content.component.html
@@ -108,7 +108,7 @@