1
0
mirror of https://github.com/TryGhost/Ghost.git synced 2024-12-21 09:52:06 +03:00

Changed back button label

refs https://github.com/TryGhost/Team/issues/1559
This commit is contained in:
Djordje Vlaisavljevic 2022-05-11 20:31:46 +02:00
parent 77272bcc9a
commit c61860742d

View File

@ -5,7 +5,7 @@ export default class SiteTitleBackButton extends React.Component {
static contextType = AppContext;
render() {
const {site} = this.context;
// const {site} = this.context;
return (
<>
<button
@ -17,7 +17,7 @@ export default class SiteTitleBackButton extends React.Component {
this.context.onAction('closePopup');
}
}}>
&larr; {site.title}
<span>&larr; </span> Back
</button>
</>
);