[Glitch] Make the button that expands the publish form differentiable from the button that publishes a post

Port 8f32b59570 to glitch-soc

Signed-off-by: Claire <claire.github-309c@sitedethib.com>
lolsob-rspec
Levi Bard 2022-11-17 10:53:38 +01:00 committed by Claire
parent ac51817c39
commit e2d8c20201
1 changed files with 1 additions and 1 deletions

View File

@ -36,7 +36,7 @@ class Header extends React.PureComponent {
if (signedIn) {
content = (
<>
{location.pathname !== '/publish' && <Link to='/publish' className='button'><FormattedMessage id='compose_form.publish' defaultMessage='Publish' /></Link>}
{location.pathname !== '/publish' && <Link to='/publish' className='button'><FormattedMessage id='compose_form.publish_form' defaultMessage='Publish' /></Link>}
<Account />
</>
);