From 1fdb8ed9a0faf180f626155aa6d37c8e0df913f6 Mon Sep 17 00:00:00 2001 From: Jake Howell Date: Fri, 22 May 2026 00:20:41 +1000 Subject: [PATCH] fix: wrap `latestVersion?.message` with `
` (#25549) This pull-request wraps the `latestVersion?.message` in a `
` so that our content is affected by the `flex flex-col` class from the parent. | Old | New | | --- | --- | | PREVIEW_1 | PREVIEW_1_NEW | | PREVIEW_2 | PREVIEW_2_NEW | --- .../modules/workspaces/WorkspaceUpdateDialogs.tsx | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/site/src/modules/workspaces/WorkspaceUpdateDialogs.tsx b/site/src/modules/workspaces/WorkspaceUpdateDialogs.tsx index 59d5348884..15dd91c1f4 100644 --- a/site/src/modules/workspaces/WorkspaceUpdateDialogs.tsx +++ b/site/src/modules/workspaces/WorkspaceUpdateDialogs.tsx @@ -131,11 +131,13 @@ const UpdateConfirmationDialog: FC = ({ template version. This can{" "} delete non-persistent data.

- {latestVersion?.message && ( - - {latestVersion.message} - - )} +
+ {latestVersion?.message && ( + + {latestVersion.message} + + )} +
} />