diff options
author | Spencer Alves <impiaaa@gmail.com> | 2018-09-29 16:44:02 -0700 |
---|---|---|
committer | ThibG <thib@sitedethib.com> | 2018-09-30 08:31:50 +0200 |
commit | 4e60a0d5433f5dfa4f71a452cc5c6ceb0f21ceab (patch) | |
tree | 1316be5ae22312e4ad5f21ee0a0f8b09e2b38a1b /app/javascript/flavours/glitch/features/local_settings | |
parent | c065717b6765435e7374975ae9d71ebaa224f92c (diff) |
Add option to hide action bar in collapsed toots
Diffstat (limited to 'app/javascript/flavours/glitch/features/local_settings')
-rw-r--r-- | app/javascript/flavours/glitch/features/local_settings/page/index.js | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/app/javascript/flavours/glitch/features/local_settings/page/index.js b/app/javascript/flavours/glitch/features/local_settings/page/index.js index 5b4e0cb01..ece80c4da 100644 --- a/app/javascript/flavours/glitch/features/local_settings/page/index.js +++ b/app/javascript/flavours/glitch/features/local_settings/page/index.js @@ -269,6 +269,18 @@ export default class LocalSettingsPage extends React.PureComponent { <FormattedMessage id='settings.image_backgrounds_media' defaultMessage='Preview collapsed toot media' /> </LocalSettingsPageItem> </section> + <section> + <h2></h2> + <LocalSettingsPageItem + settings={settings} + item={['collapsed', 'show_action_bar']} + id='mastodon-settings--collapsed-show-action-bar' + onChange={onChange} + dependsOn={[['collapsed', 'enabled']]} + > + <FormattedMessage id='settings.show_action_bar' defaultMessage='Show action buttons in collapsed toots' /> + </LocalSettingsPageItem> + </section> </div> ), ({ onChange, settings }) => ( |