Skip to content

Commit

Permalink
Display version number in extension title
Browse files Browse the repository at this point in the history
  • Loading branch information
sauntimo committed Oct 7, 2024
1 parent 709558c commit 004336b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion client/components/Header.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export default class Header extends Component {
<div className="container">
<div className="extension-header-logo">
<div className="auth0-logo" />
<h1 className="extension-name">Authorization Extension</h1>
<h1 className="extension-name">{`Authorization Extension v${window.config.EXTENSION_VERSION}`}</h1>
</div>
<div id="navbar-collapse" className="collapse navbar-collapse">
<ul className="nav navbar-nav navbar-right">
Expand Down
1 change: 1 addition & 0 deletions server/plugins/html.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ const assembleHtmlRoute = (link) => ({
BASE_URL: urlHelpers.getBaseUrl(req),
API_BASE: urlHelpers.getBaseUrl(req),
BASE_PATH: urlHelpers.getBasePath(req),
EXTENSION_VERSION: '2.12.0',
SEARCH_ENGINE: (
(config('AUTH0_RTA').replace('https://', '') === 'auth0.auth0.com') ||
config('IS_LAYER0_TEST_SPACE')
Expand Down

0 comments on commit 004336b

Please sign in to comment.