mirror of https://github.com/fantasticit/think.git
Merge pull request #162 from fantasticit/fix/image-size
This commit is contained in:
commit
4f2beb2b2f
|
@ -90,7 +90,7 @@ export const ImageWrapper = ({ editor, node, updateAttributes }) => {
|
||||||
</Spin>
|
</Spin>
|
||||||
</div>
|
</div>
|
||||||
) : (
|
) : (
|
||||||
<LazyLoadImage src={src} alt={alt} width={width} height={height} />
|
<LazyLoadImage src={src} alt={alt} width={'100%'} height={'100%'} />
|
||||||
)}
|
)}
|
||||||
</Resizeable>
|
</Resizeable>
|
||||||
</NodeViewWrapper>
|
</NodeViewWrapper>
|
||||||
|
|
Loading…
Reference in New Issue