Editable image now forces the image to not have a min width/height to make it easier to work with this component.

This commit is contained in:
Matt Mo 2021-09-29 05:31:30 -07:00
parent 01c1dfa0c6
commit 3b6365ae75

View File

@ -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"))),