Browse Source

Fixed button title in post-changelog in front-end (#1301)

Filip A. Zofakis 5 years ago
parent
commit
278c277aca
1 changed files with 1 additions and 1 deletions
  1. 1 1
      frontend/src/components/post-changelog/toolbar.js

+ 1 - 1
frontend/src/components/post-changelog/toolbar.js

@@ -85,7 +85,7 @@ export function GoForwardBtn(props) {
       className="btn-default btn-block btn-icon btn-sm"
       disabled={props.disabled || !props.edit.next}
       onClick={props.onClick}
-      title={gettext("See previous change")}
+      title={gettext("See next change")}
     >
       <span className="material-icon">chevron_right</span>
     </Button>