mirror of
https://github.com/makeplane/plane.git
synced 2025-12-20 21:59:34 +01:00
23 lines
501 B
TypeScript
23 lines
501 B
TypeScript
import Image from "@tiptap/extension-image";
|
|
import TrackImageDeletionPlugin from "../plugins/delete-image";
|
|
import UploadImagesPlugin from "../plugins/upload-image";
|
|
|
|
const UpdatedImage = Image.extend({
|
|
addProseMirrorPlugins() {
|
|
return [UploadImagesPlugin(), TrackImageDeletionPlugin()];
|
|
},
|
|
addAttributes() {
|
|
return {
|
|
...this.parent?.(),
|
|
width: {
|
|
default: '35%',
|
|
},
|
|
height: {
|
|
default: null,
|
|
},
|
|
};
|
|
},
|
|
});
|
|
|
|
export default UpdatedImage;
|