fix(core.gbapp): SaaS missing in PROD.
This commit is contained in:
parent
fda88d34d5
commit
e9e1bf7df3
1 changed files with 4 additions and 1 deletions
|
@ -469,7 +469,10 @@ export class GBDeployer implements IGBDeployer {
|
||||||
await asyncPromise.eachSeries(rows, async (line: any) => {
|
await asyncPromise.eachSeries(rows, async (line: any) => {
|
||||||
if (line && line.length > 0) {
|
if (line && line.length > 0) {
|
||||||
const key = line[1];
|
const key = line[1];
|
||||||
const value = line[2];
|
let value = line[2];
|
||||||
|
|
||||||
|
if (value.text){value = value.text};
|
||||||
|
|
||||||
if (key && value) {
|
if (key && value) {
|
||||||
obj[key] = value;
|
obj[key] = value;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue