Skip to content
Snippets Groups Projects
Unverified Commit 07af60ca authored by Jonas Sulzer's avatar Jonas Sulzer
Browse files

:ok_hand: IMPROVE: use simpler wording for rich-text/plain-text checkbox

parent 8d8ae115
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