Skip to content

Commit

Permalink
Merge pull request #51 from yeonjulee1005/stage
Browse files Browse the repository at this point in the history
🚎 [version: 1.13.0] push to master
  • Loading branch information
yeonjulee1005 authored Dec 16, 2023
2 parents 2ad2944 + bca17eb commit 9ed8ed6
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion components/atoms/article/ArticleCreateComment.vue
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
size="xl"
required
>
<LazyTextEditor
<TextEditor
:comment-option="true"
@update:model-value="(article:string, _rawArticle:string) => formData.message = article"
/>
Expand Down
18 changes: 9 additions & 9 deletions components/molecules/tiptap/TextEditor.vue
Original file line number Diff line number Diff line change
Expand Up @@ -4,50 +4,50 @@
class="tiptap-editor"
>
<div class="tiptap-editor__header gap-2">
<LazyTiptapHeadingGroup
<TiptapHeadingGroup
v-if="!commentOption"
:tiptap-editor="editor"
:full-option="fullOption"
/>
<LazyTiptapTextStyleGroup
<TiptapTextStyleGroup
:tiptap-editor="editor"
:full-option="fullOption"
/>
<LazyTiptapStrokeGroup
<TiptapStrokeGroup
v-if="!commentOption"
:tiptap-editor="editor"
:full-option="fullOption"
/>
<LazyTiptapTextAlignGroup
<TiptapTextAlignGroup
v-if="!commentOption"
:tiptap-editor="editor"
:full-option="fullOption"
/>
<LazyTiptapTextListGroup
<TiptapTextListGroup
v-if="!commentOption"
:tiptap-editor="editor"
:full-option="fullOption"
/>
<LazyEditNormalButtons
<EditNormalButtons
v-if="!commentOption"
:is-active="false"
:action="() => editor ? imageUploadDialogTrigger = true : null"
icon-type="ri:image-2-line"
:tooltip-text="$t('tiptap.image')"
/>
<LazyTiptapLinkGroup
<TiptapLinkGroup
v-if="!commentOption"
:tiptap-editor="editor"
:full-option="fullOption"
@open-hyper-link="() => hyperLinkDialogTrigger = true"
@open-youtube-link="() => youtubeLinkDialogTrigger = true"
/>
<LazyTiptapTableGroup
<TiptapTableGroup
v-if="!commentOption"
:tiptap-editor="editor"
:full-option="fullOption"
/>
<LazyTiptapExtraGroup
<TiptapExtraGroup
v-if="!commentOption"
:tiptap-editor="editor"
:full-option="fullOption"
Expand Down

0 comments on commit 9ed8ed6

Please sign in to comment.