From 3b6365ae7519ff74c8d560a9d2158e4f5632814d Mon Sep 17 00:00:00 2001 From: Matt Mo Date: Wed, 29 Sep 2021 05:31:30 -0700 Subject: [PATCH] Editable image now forces the image to not have a min width/height to make it easier to work with this component. --- editable-image.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/editable-image.js b/editable-image.js index 4d3dd91..7b7533e 100644 --- a/editable-image.js +++ b/editable-image.js @@ -56,9 +56,11 @@ class EditableImage extends IgniteElement { .src(this.source) .style("object-fit", this.objectFit) .style("object-position", this.objectPosition) + .style("min-width", 0) + .style("min-height", 0) .style("width", this.width) - .style("max-width", this.maxWidth) .style("height", this.height) + .style("max-width", this.maxWidth) .style("max-height", this.maxHeight) .hide(this.source, value => { return value == null; }) .on("load", () => this.dispatchEvent(new Event("load"))),