Skip to content
This repository was archived by the owner on Apr 5, 2024. It is now read-only.

Commit 7615df3

Browse files
authored
Merge pull request #1251 from City-of-Helsinki/fix-respa-admin-link
fix: respa admin url link
2 parents 3443e58 + 2c72939 commit 7615df3

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "varaamo",
3-
"version": "0.12.10",
3+
"version": "0.12.11",
44
"repository": {
55
"type": "git",
66
"url": "https://github.com/City-of-Helsinki/varaamo"

src/domain/footer/__tests__/__snapshots__/Footer.test.js.snap

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ exports[`domain/footer/Footer When there is no customization in use renders corr
5656
<span
5757
className="app-varaamo-version"
5858
>
59-
v0.12.10
59+
v0.12.11
6060
</span>
6161
</div>
6262
</Col>
@@ -121,7 +121,7 @@ exports[`domain/footer/Footer renders correctly 1`] = `
121121
<span
122122
className="app-varaamo-version"
123123
>
124-
v0.12.10
124+
v0.12.11
125125
</span>
126126
</div>
127127
</Col>

src/domain/header/MainNavbar.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ class MainNavbar extends React.Component {
8080
{t('Navbar.manageReservations')}
8181
</NavItem>
8282
</LinkContainer>
83-
<NavItem eventKey="adminMaintenance" href="https://api.hel.fi/respa/ra/" target="_blank">
83+
<NavItem eventKey="adminMaintenance" href="https://respa.api.hel.fi/respa/ra/" target="_blank">
8484
{t('Navbar.adminMaintenance')}
8585
<FAIcon icon={faExternalLinkAlt} />
8686
</NavItem>

src/domain/header/__tests__/MainNavbar.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import FAIcon from '../../../../app/shared/fontawesome-icon/FontAwesomeIcon';
1111
describe('shared/main-navbar/MainNavbar', () => {
1212
const pathname = 'somepath';
1313
const gitbookURL = 'https://cityofhelsinki.gitbook.io/varaamo';
14-
const respaURL = 'https://api.hel.fi/respa/ra/';
14+
const respaURL = 'https://respa.api.hel.fi/respa/ra/';
1515

1616
function getWrapper(props) {
1717
const defaults = {

0 commit comments

Comments
 (0)