Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(NcRichContenteditable): make the default placeholder short #4408

Merged
merged 1 commit into from Sep 7, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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