Skip to content

Commit

Permalink
fix: 🐛 编辑链接弹窗
Browse files Browse the repository at this point in the history
  • Loading branch information
zhxqc committed Sep 21, 2022
1 parent 4ef62fa commit d6d3d18
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
11 changes: 6 additions & 5 deletions src/components/Editor.vue
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,11 @@
editorClass,
]"
>
<!-- <menu-bubble-->
<!-- :editor="editor"-->
<!-- :class="editorBubbleMenuClass"-->
<!-- />-->
<menu-bubble
v-if="!readonly"
:editor="editor"
:class="editorBubbleMenuClass"
/>

<menu-bar
v-if="!readonly"
Expand Down Expand Up @@ -77,7 +78,7 @@ import { Trans } from '@/i18n';
import { useCodeView, useCharacterCount, useEditorStyle } from '@/hooks';
import MenuBar from './menuBar/Index.vue';
// import MenuBubble from './menuBubble/Index.vue';
import MenuBubble from './menuBubble/Index.vue';
import zh from '@/i18n/locales/zh';
const props = defineProps({
Expand Down
2 changes: 1 addition & 1 deletion src/components/menuCommands/link/EditLinkCommandButton.vue
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
/>

<el-dialog
v-model:visible="editLinkDialogVisible"
v-model="editLinkDialogVisible"
:title="t('editor.extensions.Link.edit.control.title')"
:append-to-body="true"
width="400px"
Expand Down

0 comments on commit d6d3d18

Please sign in to comment.