Skip to content

Commit

Permalink
Merge pull request #152 from pateljannat/mentions
Browse files Browse the repository at this point in the history
fix: increase mention result display count to 10
  • Loading branch information
pateljannat authored May 24, 2024
2 parents 1394a12 + c7a7a03 commit d23b2f8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/TextEditor/mention.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ function getSuggestionOptions(options) {
.filter((item) =>
item.label.toLowerCase().startsWith(query.toLowerCase())
)
.slice(0, 5)
.slice(0, 10)
},

render: () => {
Expand Down

0 comments on commit d23b2f8

Please sign in to comment.