Skip to content

Commit

Permalink
fixup! Address review feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
juliusknorr committed Oct 5, 2022
1 parent 5043706 commit b5696b2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
1 change: 0 additions & 1 deletion src/extensions/RichText.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,6 @@ import Table from './../nodes/Table.js'
import TaskItem from './../nodes/TaskItem.js'
import TaskList from './../nodes/TaskList.js'
import Text from '@tiptap/extension-text'
import TipTapParagraph from '@tiptap/extension-paragraph'
/* eslint-enable import/no-named-as-default */

import { Strong, Italic, Strike, Link, Underline } from './../marks/index.js'
Expand Down
5 changes: 4 additions & 1 deletion src/nodes/ParagraphView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,10 @@
<template>
<NodeViewWrapper class="vue-component" as="p">
<NodeViewContent class="paragraph-content" />
<ReferenceList v-if="text" :text="text" :limit="1" contenteditable="false" />
<ReferenceList v-if="text"
:text="text"
:limit="1"
contenteditable="false" />
</NodeViewWrapper>
</template>

Expand Down

0 comments on commit b5696b2

Please sign in to comment.