rename mockData to CPLmockData
This commit is contained in:
@@ -37,7 +37,7 @@ function Header() {
|
||||
script.src =
|
||||
environment === "production"
|
||||
? `/CPL?/CPL/SERVICE/System.js`
|
||||
: `/mockData/SERVICE/System.js`;
|
||||
: `/CPLmockData/SERVICE/System.js`;
|
||||
|
||||
script.async = true;
|
||||
script.onload = () => {
|
||||
|
||||
@@ -56,7 +56,7 @@ function Kue705FO({
|
||||
if (environment === "production") {
|
||||
fileData = `/CPL?/CPL/lastTDR/slot${slot}.json`; // Produktions-Pfad
|
||||
} else {
|
||||
fileData = `/mockData/lastTDR/slot${slot}.json`; // Mock-Daten-Pfad für Entwicklung
|
||||
fileData = `/CPLmockData/lastTDR/slot${slot}.json`; // Mock-Daten-Pfad für Entwicklung
|
||||
}
|
||||
|
||||
fetch(fileData)
|
||||
@@ -77,7 +77,7 @@ function Kue705FO({
|
||||
if (environment === "production") {
|
||||
fileData = `/CPL?/CPL/4000values/slot${slot}.json`; // Produktions-Pfad
|
||||
} else {
|
||||
fileData = `/mockData/4000values/slot${slot}.json`; // Mock-Daten-Pfad für Entwicklung
|
||||
fileData = `/CPLmockData/4000values/slot${slot}.json`; // Mock-Daten-Pfad für Entwicklung
|
||||
}
|
||||
|
||||
fetch(fileData)
|
||||
|
||||
Reference in New Issue
Block a user