From 85722fc64f58e9c7203c528c2ca45eb94e376774 Mon Sep 17 00:00:00 2001 From: Joel Collins Date: Tue, 22 Sep 2020 10:25:08 +0100 Subject: [PATCH] Removed client version from About tab --- .../src/components/viewComponents/statusPane.vue | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/openflexure_microscope/api/static/src/components/viewComponents/statusPane.vue b/openflexure_microscope/api/static/src/components/viewComponents/statusPane.vue index 4b970686..b5b013bb 100644 --- a/openflexure_microscope/api/static/src/components/viewComponents/statusPane.vue +++ b/openflexure_microscope/api/static/src/components/viewComponents/statusPane.vue @@ -23,10 +23,6 @@ Server version:
{{ configuration.application.version }} -
- Client version:
- {{ clientVersionName }} -

@@ -93,8 +89,7 @@ export default { return { configuration: null, settings: null, - systemActionLinks: {}, - clientVersion: process.env.PACKAGE.version + systemActionLinks: {} }; }, @@ -107,9 +102,6 @@ export default { }, actionsUri: function() { return `${this.$store.getters.baseUri}/api/v2/actions`; - }, - clientVersionName: function() { - return `${process.env.PACKAGE.version}`; } },