mirror of
https://github.com/ThatGuySam/doesitarm.git
synced 2026-05-18 06:44:46 -07:00
Fix verbiage references in App Test
This commit is contained in:
parent
5d92a4d951
commit
921815ba6b
2 changed files with 5 additions and 3 deletions
|
|
@ -7,7 +7,9 @@ dotenv.config()
|
||||||
export const publicRuntimeConfig = {
|
export const publicRuntimeConfig = {
|
||||||
allUpdateSubscribe: process.env.ALL_UPDATE_SUBSCRIBE,
|
allUpdateSubscribe: process.env.ALL_UPDATE_SUBSCRIBE,
|
||||||
testResultStore: process.env.TEST_RESULT_STORE,
|
testResultStore: process.env.TEST_RESULT_STORE,
|
||||||
siteUrl: process.env.URL
|
siteUrl: process.env.URL,
|
||||||
|
macsVerbiage: process.env.npm_package_config_verbiage_macs,
|
||||||
|
processorsVerbiage: process.env.npm_package_config_verbiage_processors,
|
||||||
}
|
}
|
||||||
|
|
||||||
export function makeViteDefinitions () {
|
export function makeViteDefinitions () {
|
||||||
|
|
|
||||||
|
|
@ -207,7 +207,7 @@ export default {
|
||||||
},
|
},
|
||||||
computed: {
|
computed: {
|
||||||
npm_package_config_verbiage_macs () {
|
npm_package_config_verbiage_macs () {
|
||||||
return process.env.npm_package_config_verbiage_macs
|
return this.config.macsVerbiage //process.env.npm_package_config_verbiage_macs
|
||||||
},
|
},
|
||||||
foundFiles () {
|
foundFiles () {
|
||||||
return this.appsBeingScanned.filter( appScan => {
|
return this.appsBeingScanned.filter( appScan => {
|
||||||
|
|
@ -271,7 +271,7 @@ export default {
|
||||||
return `Apple Silicon Compatibility Test Online`
|
return `Apple Silicon Compatibility Test Online`
|
||||||
},
|
},
|
||||||
description () {
|
description () {
|
||||||
return `Check for Apple Silicon compatibility for any of your apps instantly before you buy an ${ process.env.npm_package_config_verbiage_macs }. `
|
return `Check for Apple Silicon compatibility for any of your apps instantly before you buy an ${ this.config.macsVerbiage }. `
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
mounted () {
|
mounted () {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue