Add "More" to the sidebar menu with links to mutes, blocks, and so on (#34987)

This commit is contained in:
Eugen Rochko 2025-06-11 18:12:04 +02:00 committed by GitHub
commit f53bb4cd7d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
8 changed files with 151 additions and 157 deletions

View file

@ -9,8 +9,6 @@ import { IconButton } from 'mastodon/components/icon_button';
import { me } from 'mastodon/initial_state';
import { useAppDispatch, useAppSelector } from 'mastodon/store';
import { ActionBar } from './action_bar';
const messages = defineMessages({
cancel: { id: 'reply_indicator.cancel', defaultMessage: 'Cancel' },
});
@ -33,15 +31,14 @@ export const NavigationBar: React.FC = () => {
return (
<div className='navigation-bar'>
<Account id={me} minimal />
{isReplying ? (
{isReplying && (
<IconButton
title={intl.formatMessage(messages.cancel)}
icon=''
iconComponent={CloseIcon}
onClick={handleCancelClick}
/>
) : (
<ActionBar />
)}
</div>
);