Skip to content

Commit

Permalink
Merge pull request #4408 from nextcloud-libraries/fix/richcontentedit…
Browse files Browse the repository at this point in the history
…able-placeholder-overflow

fix(NcRichContenteditable): make the default placeholder short
  • Loading branch information
ShGKme committed Sep 7, 2023
2 parents f2f8c10 + b1b486f commit 704a6cd
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 704a6cd

Please sign in to comment.