Skip to content

Commit

Permalink
fix: typo error
Browse files Browse the repository at this point in the history
  • Loading branch information
lovefields committed Oct 13, 2024
1 parent 4ca53b7 commit f383649
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "dragon-editor",
"version": "3.4.3",
"version": "3.4.4",
"description": "Javascript WYSIWYG editor in Nuxt3!",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion src/runtime/utils/block.ts
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ export function _createImageBlock(data: DEImageBlock, imageHostURL: string = "")
const $p = document.createElement("p") as HTMLParagraphElement;

$wrap.classList.add("de-block", "de-image-block", ...data.classList);
$div.classList.add("de-image-area");ƒ
$div.classList.add("de-image-area");
$leftBtn.classList.add("de-btn", "de-btn-left");
$rightBtn.classList.add("de-btn", "de-btn-right");
$image.classList.add("de-img");
Expand Down

0 comments on commit f383649

Please sign in to comment.