From f3d6ae72eb9183bd6554b2da469a6b9951885606 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ere=20M=C3=A4nnist=C3=B6?= Date: Sat, 14 Feb 2026 07:57:53 +0200 Subject: [PATCH 1/2] Fix: Add `width` to the image element --- packages/keystatic/src/form/fields/image/ui.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/keystatic/src/form/fields/image/ui.tsx b/packages/keystatic/src/form/fields/image/ui.tsx index 50fa454f3..528ed2188 100644 --- a/packages/keystatic/src/form/fields/image/ui.tsx +++ b/packages/keystatic/src/form/fields/image/ui.tsx @@ -150,6 +150,7 @@ export function ImageFieldInput( display: 'block', maxHeight: tokenSchema.size.alias.singleLineWidth, maxWidth: '100%', + width: '100%', }} /> From 33ee55281b39582868a1ae7b2df7af1bca4aa8ca Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ere=20M=C3=A4nnist=C3=B6?= Date: Sat, 14 Feb 2026 07:58:20 +0200 Subject: [PATCH 2/2] Fix: Add `width` to the cloud image element --- packages/keystatic/src/form/fields/cloudImage/ui.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/keystatic/src/form/fields/cloudImage/ui.tsx b/packages/keystatic/src/form/fields/cloudImage/ui.tsx index 104f5934c..af96d667d 100644 --- a/packages/keystatic/src/form/fields/cloudImage/ui.tsx +++ b/packages/keystatic/src/form/fields/cloudImage/ui.tsx @@ -162,6 +162,7 @@ function ImageField(props: { display: 'block', maxHeight: tokenSchema.size.alias.singleLineWidth, maxWidth: '100%', + width: '100%', }} />