@writergate/quill-image-uploader-nextjs 0.2.0 → 0.2.1

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@writergate/quill-image-uploader-nextjs",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "git+https://github.com/enlear/quill-image-uploader-nextjs.git"
@@ -23,8 +23,8 @@ class CommentBlot extends InlineBlot {
23
23
  }
24
24
 
25
25
  CommentBlot.blotName = "commentBlot";
26
- CommentBlot.tagName = "div";
26
+ CommentBlot.tagName = "span";
27
27
 
28
- Quill.register({ "formats/commentBlot": CommentBlot });
28
+ Quill.register(CommentBlot);
29
29
 
30
30
  export default CommentBlot;