rename suggestions menu to suggestion list

This commit is contained in:
Alina Beck 2019-08-24 10:44:37 +01:00
parent 62775a93d6
commit af985ba95c
2 changed files with 3 additions and 3 deletions

View File

@ -3,7 +3,7 @@
<menu-bar :editor="editor" :showLinkMenu="showLinkMenu" /> <menu-bar :editor="editor" :showLinkMenu="showLinkMenu" />
<editor-content ref="editor" :editor="editor" /> <editor-content ref="editor" :editor="editor" />
<context-menu ref="contextMenu" /> <context-menu ref="contextMenu" />
<suggestions-menu <suggestion-list
:showSuggestions="showSuggestions" :showSuggestions="showSuggestions"
ref="suggestions" ref="suggestions"
:filtered-items="filteredItems" :filtered-items="filteredItems"
@ -31,7 +31,7 @@ import Mention from './nodes/Mention.js'
import { mapGetters } from 'vuex' import { mapGetters } from 'vuex'
import MenuBar from './MenuBar' import MenuBar from './MenuBar'
import ContextMenu from './ContextMenu' import ContextMenu from './ContextMenu'
import SuggestionsMenu from './SuggestionsMenu' import SuggestionList from './SuggestionList'
import LinkInput from './LinkInput' import LinkInput from './LinkInput'
let throttleInputEvent let throttleInputEvent
@ -42,7 +42,7 @@ export default {
EditorContent, EditorContent,
LinkInput, LinkInput,
MenuBar, MenuBar,
SuggestionsMenu, SuggestionList,
}, },
props: { props: {
users: { type: Array, default: () => null }, // If 'null', than the Mention extention is not assigned. users: { type: Array, default: () => null }, // If 'null', than the Mention extention is not assigned.