mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
18 lines
282 B
TypeScript
18 lines
282 B
TypeScript
|
import Image from "@tiptap/extension-image";
|
||
|
|
||
|
const UpdatedImage = Image.extend({
|
||
|
addAttributes() {
|
||
|
return {
|
||
|
...this.parent?.(),
|
||
|
width: {
|
||
|
default: null,
|
||
|
},
|
||
|
height: {
|
||
|
default: null,
|
||
|
},
|
||
|
};
|
||
|
},
|
||
|
});
|
||
|
|
||
|
export default UpdatedImage;
|