mirror of
https://github.com/ThatGuySam/doesitarm.git
synced 2026-05-15 06:35:20 -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 = {
|
||||
allUpdateSubscribe: process.env.ALL_UPDATE_SUBSCRIBE,
|
||||
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 () {
|
||||
|
|
|
|||
|
|
@ -207,7 +207,7 @@ export default {
|
|||
},
|
||||
computed: {
|
||||
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 () {
|
||||
return this.appsBeingScanned.filter( appScan => {
|
||||
|
|
@ -271,7 +271,7 @@ export default {
|
|||
return `Apple Silicon Compatibility Test Online`
|
||||
},
|
||||
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 () {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue