diff --git a/webui/src/components/OperationRow.tsx b/webui/src/components/OperationRow.tsx
index f5db7801..ec43f9b6 100644
--- a/webui/src/components/OperationRow.tsx
+++ b/webui/src/components/OperationRow.tsx
@@ -323,21 +323,16 @@ const SnapshotDetails = ({ snapshot }: { snapshot: ResticSnapshot }) => {
const rows: React.ReactNode[] = [
-
+
Host
{snapshot.hostname}
-
+
Username
{snapshot.hostname}
-
- Tags
-
- {snapshot.tags?.join(", ")}
-
,
];
@@ -393,7 +388,10 @@ const SnapshotDetails = ({ snapshot }: { snapshot: ResticSnapshot }) => {
<>
Snapshot ID:
- {normalizeSnapshotId(snapshot.id!)} {rows}
+ {normalizeSnapshotId(snapshot.id!)}
+ Tags:
+ {snapshot.tags?.join(", ")}
+ {rows}
>
);