- {`Joy Ride Status: ${enableJoyRide}`}
{`${InstanceRenderManager({
imex: t('titles.imexonline'),
rome: t('titles.romeonline'),
promanager: t('titles.promanager'),
- })} ${import.meta.env.VITE_APP_GIT_SHA || 'Local Build'} - ${
+ })} - ${
import.meta.env.VITE_APP_GIT_SHA_DATE
}`}
diff --git a/client/src/translations/en_us/common.json b/client/src/translations/en_us/common.json
index 08a6737cf..3bb37edb9 100644
--- a/client/src/translations/en_us/common.json
+++ b/client/src/translations/en_us/common.json
@@ -2174,6 +2174,7 @@
"insurance": "Insurance Information",
"labor": "Labor",
"lifecycle": "Lifecycle",
+ "parts": "Parts",
"partssublet": "Parts & Bills",
"rates": "Rates",
"repairdata": "Repair Data",
diff --git a/client/src/translations/es/common.json b/client/src/translations/es/common.json
index 7c4416b16..ba11bb4a3 100644
--- a/client/src/translations/es/common.json
+++ b/client/src/translations/es/common.json
@@ -2174,6 +2174,7 @@
"insurance": "",
"labor": "Labor",
"lifecycle": "",
+ "parts": "",
"partssublet": "Piezas / Subarrendamiento",
"rates": "",
"repairdata": "Datos de reparación",
diff --git a/client/src/translations/fr/common.json b/client/src/translations/fr/common.json
index c219fbd89..1117003e0 100644
--- a/client/src/translations/fr/common.json
+++ b/client/src/translations/fr/common.json
@@ -2174,6 +2174,7 @@
"insurance": "",
"labor": "La main d'oeuvre",
"lifecycle": "",
+ "parts": "",
"partssublet": "Pièces / Sous-location",
"rates": "",
"repairdata": "Données de réparation",
diff --git a/client/vite.config.js b/client/vite.config.js
index 2ec487ccb..a5d9f6734 100644
--- a/client/vite.config.js
+++ b/client/vite.config.js
@@ -105,6 +105,9 @@ export default defineConfig({
react(),
// CompressionPlugin(), //Cloudfront already compresses assets, so not needed.
],
+ define:{
+ "APP_VERSION": JSON.stringify(process.env.npm_package_version)
+ },
server: {
host: true,
port: 3000,