diff --git a/CHANGELOG.md b/CHANGELOG.md index 0e6072975..520a3c933 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Change history for stripes-core +## 8.3.0 IN PROGRESS + +* Use documenation's root URL in NavBar `?` link. Refs STCOR-621. + ## [8.2.0](https://github.com/folio-org/stripes-core/tree/v8.2.0) (2022-06-14) [Full Changelog](https://github.com/folio-org/stripes-core/compare/v8.1.0...v8.2.0) diff --git a/src/components/MainNav/MainNav.js b/src/components/MainNav/MainNav.js index 645510d15..481390847 100644 --- a/src/components/MainNav/MainNav.js +++ b/src/components/MainNav/MainNav.js @@ -199,7 +199,7 @@ class MainNav extends Component { {({ lastVisited }) => { const apps = this.getAppList(lastVisited); const selectedApp = apps.find(entry => entry.active); - const helpUrl = stripes.config.helpUrl ?? 'https://docs.folio.org/docs'; + const helpUrl = stripes.config.helpUrl ?? 'https://docs.folio.org'; return (