fix(core.gbapp): SaaS missing in PROD.

This commit is contained in:
me@rodrigorodriguez.com 2024-09-26 14:53:16 -03:00
parent fda88d34d5
commit e9e1bf7df3

View file

@ -469,7 +469,10 @@ export class GBDeployer implements IGBDeployer {
await asyncPromise.eachSeries(rows, async (line: any) => {
if (line && line.length > 0) {
const key = line[1];
const value = line[2];
let value = line[2];
if (value.text){value = value.text};
if (key && value) {
obj[key] = value;
}