fix(basic.gbapp): AS IMAGE testing.
This commit is contained in:
parent
003d66a662
commit
c4d7bdfc05
2 changed files with 3 additions and 3 deletions
|
@ -325,7 +325,7 @@ export class SystemKeywords {
|
||||||
|
|
||||||
public async asPDF({ pid, data }) {
|
public async asPDF({ pid, data }) {
|
||||||
let file = await this.renderTable(pid, data, true, false);
|
let file = await this.renderTable(pid, data, true, false);
|
||||||
return file[0];
|
return file;
|
||||||
}
|
}
|
||||||
|
|
||||||
public async asImage({ pid, data }) {
|
public async asImage({ pid, data }) {
|
||||||
|
@ -382,7 +382,7 @@ export class SystemKeywords {
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
let file = await this.renderTable(pid, data, false, true);
|
let file = await this.renderTable(pid, data, false, true);
|
||||||
return file[0];
|
return file;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -174,7 +174,7 @@ export class GBDeployer implements IGBDeployer {
|
||||||
|
|
||||||
// Start the process of searching.
|
// Start the process of searching.
|
||||||
|
|
||||||
GBLog.info(`Deploying Application Packages...`);
|
GBLog.info(`Deploying Application packages...`);
|
||||||
await CollectionUtil.asyncForEach(paths, async e => {
|
await CollectionUtil.asyncForEach(paths, async e => {
|
||||||
GBLog.info(`Looking in: ${e}...`);
|
GBLog.info(`Looking in: ${e}...`);
|
||||||
await scanPackageDirectory(e);
|
await scanPackageDirectory(e);
|
||||||
|
|
Loading…
Add table
Reference in a new issue