Skip to content

Commit

Permalink
fix(NcRichContenteditable): make the default placeholder short withou…
Browse files Browse the repository at this point in the history
…t instructions

Signed-off-by: Grigorii K. Shartsev <me@shgk.me>
  • Loading branch information
ShGKme committed Sep 6, 2023
1 parent c338863 commit b1b486f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion l10n/messages.pot
Expand Up @@ -265,5 +265,5 @@ msgstr ""
msgid "Undo changes"
msgstr ""

msgid "Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …"
msgid "Write a message …"
msgstr ""
Expand Up @@ -35,7 +35,6 @@ This component displays contenteditable div with automated `@` [at] autocompleti
:auto-complete="autoComplete"
:maxlength="100"
:user-data="userData"
placeholder="Try mentioning user @Test01 or inserting emoji :smile"
@submit="onSubmit" />
<br>

Expand All @@ -45,7 +44,6 @@ This component displays contenteditable div with automated `@` [at] autocompleti
:maxlength="400"
:multiline="true"
:user-data="userData"
placeholder="Try mentioning user @Test01 or inserting emoji :smile"
@submit="onSubmit" />

<h5>Output - raw</h5>
Expand Down Expand Up @@ -222,7 +220,7 @@ export default {
placeholder: {
type: String,
default: t('Write message, use "@" to mention someone, use ":" for emoji autocompletion'),
default: t('Write a message'),
},
autoComplete: {
Expand Down

0 comments on commit b1b486f

Please sign in to comment.