Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions packages/pluggableWidgets/image-web/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),

## [Unreleased]

### Changed

- We changed the default maximum height to 250 pixels for new Image widgets. Existing widgets are not affected.

### Fixed

- We fixed an issue where previews in Design and Structure modes did not respect the configured minimum and maximum image height.
Expand Down
4 changes: 2 additions & 2 deletions packages/pluggableWidgets/image-web/src/Image.xml
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@
<caption>Minimum height</caption>
<description />
</property>
<property key="maxHeightUnit" type="enumeration" defaultValue="none">
<property key="maxHeightUnit" type="enumeration" defaultValue="pixels">
<caption>Maximum Height unit</caption>
<description />
<enumerationValues>
Expand All @@ -120,7 +120,7 @@
<enumerationValue key="viewport">Viewport</enumerationValue>
</enumerationValues>
</property>
<property key="maxHeight" type="integer" required="true" defaultValue="0">
<property key="maxHeight" type="integer" required="true" defaultValue="250">
<caption>Maximum height</caption>
<description />
</property>
Expand Down
Loading