diff options
Diffstat (limited to 'app/javascript')
-rw-r--r-- | app/javascript/flavours/glitch/features/compose/components/options.js | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/app/javascript/flavours/glitch/features/compose/components/options.js b/app/javascript/flavours/glitch/features/compose/components/options.js index 908126c6f..9bec36a7d 100644 --- a/app/javascript/flavours/glitch/features/compose/components/options.js +++ b/app/javascript/flavours/glitch/features/compose/components/options.js @@ -230,17 +230,17 @@ class ComposerOptions extends ImmutablePureComponent { const contentTypeItems = { plain: { - icon: 'file', + icon: 'align-left', name: 'text/plain', text: <FormattedMessage {...messages.plain} />, }, html: { - icon: 'file-text', + icon: 'code', name: 'text/html', text: <FormattedMessage {...messages.html} />, }, markdown: { - icon: 'file-text', + icon: 'arrow-circle-down', name: 'text/markdown', text: <FormattedMessage {...messages.markdown} />, }, @@ -311,7 +311,8 @@ class ComposerOptions extends ImmutablePureComponent { value={privacy} /> <Dropdown - icon="code" + disabled={disabled} + icon={(contentTypeItems[contentType.split('/')[1]] || {}).icon} items={[ contentTypeItems.plain, contentTypeItems.html, |