Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed initial height of custom-widget editor window. #1977

Merged
merged 1 commit into from
Nov 1, 2022
Merged
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
2 changes: 1 addition & 1 deletion src/components/custom-html/ko/customHtmlEditorView.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<div class="form flex-item flex-item-grow flex flex-column" data-bind="scrollable: {}">
<div class="form flex-item flex-item-grow flex flex-column">
<size-editor
params="{ features: 'width,height', allowUnits: 'px,%', sizeConfig: sizeStyleConfig, onUpdate: onSizeUpdate }">
</size-editor>
Expand Down
3 changes: 2 additions & 1 deletion src/components/custom-widget/ko/customWidgetEditorView.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<fieldset class="form flex flex-item flex-item-grow no-overflow">
<div class="flex flex-column fit">
<div class="flex flex-column flex-item flex-item-grow">
<div class="flex-item">
<div class="form-group">
<label class="form-label">Name</label>
Expand All @@ -15,6 +15,7 @@ <h4>Custom properties</h4>

<iframe class="flex-item flex-item-grow"
data-bind="attr: { id: instanceId, src: src, sandbox: iframeSandboxAllows }"
height="320"
frameborder="0"
></iframe>
</div>
Expand Down