Skip to content
Snippets Groups Projects
Unverified Commit 805bf3f0 authored by Christoph Wurst's avatar Christoph Wurst Committed by GitHub
Browse files

Merge pull request #2247 from nextcloud/feature/noissue/plain-text-vs-rich-text-checkbox

Feature/noissue/plain text vs rich text checkbox
parents 8d8ae115 07af60ca
No related branches found
No related tags found
No related merge requests found
......@@ -137,11 +137,11 @@
t('mail', 'Add attachment from Files')
}}</ActionButton>
<ActionCheckbox
:checked="editorPlainText"
:text="t('mail', 'Plain text')"
@check="editorPlainText = true"
@uncheck="editorPlainText = false"
>{{ t('mail', 'Plain text') }}</ActionCheckbox
:checked="!editorPlainText"
:text="t('mail', 'Enable formatting')"
@check="editorPlainText = false"
@uncheck="editorPlainText = true"
>{{ t('mail', 'Enable formatting') }}</ActionCheckbox
>
</Actions>
<div>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment