diff --git a/src/components/Footer.vue b/src/components/Footer.vue index 48d199e..1112637 100644 --- a/src/components/Footer.vue +++ b/src/components/Footer.vue @@ -116,8 +116,8 @@

© 2024 BBMRI-ERIC

-
- UI version: {{ gitTag }}Server version: {{ backendVersion }} +
+ UI: {{ gitTag }}Application: v{{ backendVersion }}
Need help? Contact us. diff --git a/src/store/actions.js b/src/store/actions.js index d1268f0..54d8e6d 100644 --- a/src/store/actions.js +++ b/src/store/actions.js @@ -9,7 +9,7 @@ const USER_PATH = `${BASE_API_PATH}/users` const USER_ROLES_PATH = `${BASE_API_PATH}/users/roles` const USER_RESOURCES_PATH = `${BASE_API_PATH}/users/resources` const ATTACHMENTS_PATH = `${BASE_API_PATH}/attachments` -const BACKEND_VERSION_PATH = `${BASE_API_PATH}/actuator/info` +const BACKEND_VERSION_PATH = "/api/actuator/info" function getBearerHeaders (token) { return { Authorization: `Bearer ${token}` } @@ -35,7 +35,7 @@ export default { retrieveBackendVersion (store) { return axios.get(`${BACKEND_VERSION_PATH}`) .then((response) => { - return response.data.version + return response.data.build.version }) .catch((error) => { if (error.response) { diff --git a/src/views/HomePage.vue b/src/views/HomePage.vue index 591414e..44c15c0 100644 --- a/src/views/HomePage.vue +++ b/src/views/HomePage.vue @@ -90,8 +90,8 @@ href="https://github.com/BBMRI-ERIC/negotiator-v3-frontend" > GitHub
-
- UI version: {{ gitTag }}Server version: {{ backendVersion }} +
+ UI version: {{ gitTag }}Server version: {{ backendVersion }}

© 2024 BBMRI-ERIC