about summary refs log tree commit diff
diff options
context:
space:
mode:
authorLevi Bard <taktaktaktaktaktaktaktaktaktak@gmail.com>2022-11-17 10:53:38 +0100
committerClaire <claire.github-309c@sitedethib.com>2022-11-17 12:58:39 +0100
commit4b449fff23bb3a9a649b75766cf862f9a6a22ca1 (patch)
tree503d0ddc7624884f35f6d35531efc684e6ae7098
parent87929ad866f9be4a174a05a3bdcdede39eb20c3f (diff)
[Glitch] Make the button that expands the publish form differentiable from the button that publishes a post
Port 654d348aac804b3f5f96f21399118f625121501f to glitch-soc

Signed-off-by: Claire <claire.github-309c@sitedethib.com>
-rw-r--r--app/javascript/flavours/glitch/features/ui/components/header.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/javascript/flavours/glitch/features/ui/components/header.js b/app/javascript/flavours/glitch/features/ui/components/header.js
index 6c2fb40ba..891f7fc07 100644
--- a/app/javascript/flavours/glitch/features/ui/components/header.js
+++ b/app/javascript/flavours/glitch/features/ui/components/header.js
@@ -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 />
         </>
       );