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 authored and Antreesy committed Sep 14, 2023
1 parent b2540f3 commit 187926e
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
Original file line number Diff line number Diff line change
Expand Up @@ -242,5 +242,5 @@ msgstr ""
msgid "Undo changes"
msgstr ""

msgid "Write message, use \"@\" to mention someone, use \":\" for emoji autocompletion …"
msgid "Write a message …"
msgstr ""
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@ Try mentioning user @Test01 or inserting emoji :smile
:auto-complete="autoComplete"
:maxlength="100"
:user-data="userData"
placeholder="Try mentioning user @Test01 or inserting emoji :smile"
@submit="onSubmit" />
<br>

Expand All @@ -47,7 +46,6 @@ Try mentioning user @Test01 or inserting emoji :smile
: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 @@ -269,7 +267,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 187926e

Please sign in to comment.