We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 79e8b4e commit 2785bf0Copy full SHA for 2785bf0
packages/pluggableWidgets/image-web/src/ui/Image.scss
@@ -1,5 +1,6 @@
1
.mx-image-viewer {
2
width: 100%;
3
+ height: 100%;
4
}
5
6
.mx-image-viewer-responsive img {
packages/pluggableWidgets/image-web/src/utils/helpers.ts
@@ -15,7 +15,6 @@ export function constructStyleObject(props: ImageContainerProps): CSSProperties
15
imageStyle.height = "auto";
16
17
if (minHeightUnit !== "none" && minHeight > 0) {
18
- console.warn(minHeight);
19
imageStyle.minHeight = getHeightScale(minHeight, minHeightUnit);
20
21
0 commit comments