From ba60c7d512dd7b56fb92f9c321131904bd34e001 Mon Sep 17 00:00:00 2001 From: Stefano Verna Date: Fri, 31 May 2024 17:54:56 +0200 Subject: [PATCH] Fix regression --- src/components/Image/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Image/index.ts b/src/components/Image/index.ts index 9c9c789..777041e 100644 --- a/src/components/Image/index.ts +++ b/src/components/Image/index.ts @@ -263,7 +263,7 @@ export const Image = defineComponent({ left: '-5%', top: '-5%', width: '110%', - height: 'auto', + height: this.data.base64 ? 'auto' : '110%', maxWidth: 'none', maxHeight: 'none', ...this.placeholderStyle,