mirror of https://github.com/fantasticit/think.git
tiptap: fix image size
parent
d98fb8d4c5
commit
5b8dac7f72
|
@ -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