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:
parent
01c1dfa0c6
commit
3b6365ae75
@ -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"))),
|
||||
|
Loading…
x
Reference in New Issue
Block a user