fix(basic.gblib): SET PAGED keyword #377.
This commit is contained in:
parent
488ef9d0f8
commit
d18ae6c511
2 changed files with 3 additions and 2 deletions
|
@ -354,7 +354,7 @@ export class KeywordsExpressions {
|
||||||
__seekToken = __data.links?.self?.headers["MS-ContinuationToken"]
|
__seekToken = __data.links?.self?.headers["MS-ContinuationToken"]
|
||||||
__totalCount = __data["totalCount"] ? __data["totalCount"] : __data.length;
|
__totalCount = __data["totalCount"] ? __data["totalCount"] : __data.length;
|
||||||
|
|
||||||
while (__next)
|
while (__next && __totalCount)
|
||||||
{
|
{
|
||||||
let ${$1} = __data?.items ? __data?.items[__index] : __data[__index];
|
let ${$1} = __data?.items ? __data?.items[__index] : __data[__index];
|
||||||
`;
|
`;
|
||||||
|
|
|
@ -1445,6 +1445,7 @@ export class SystemKeywords {
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public async convert({ pid, src, dest }) {
|
public async convert({ pid, src, dest }) {
|
||||||
|
|
||||||
const { min, user, params } = await DialogKeywords.getProcessInfo(pid);
|
const { min, user, params } = await DialogKeywords.getProcessInfo(pid);
|
||||||
GBLog.info(`BASIC: CONVERT '${src}' to '${dest}'`);
|
GBLog.info(`BASIC: CONVERT '${src}' to '${dest}'`);
|
||||||
let { baseUrl, client } = await GBDeployer.internalGetDriveClient(min);
|
let { baseUrl, client } = await GBDeployer.internalGetDriveClient(min);
|
||||||
|
@ -1523,7 +1524,7 @@ export class SystemKeywords {
|
||||||
res[extraKey + key] = obj[key];
|
res[extraKey + key] = obj[key];
|
||||||
}
|
}
|
||||||
else{
|
else{
|
||||||
GBLog.info(`Ignoring duplicated field in flatten operation to storage: ${key}.`);
|
GBLog.verbose(`Ignoring duplicated field in flatten operation to storage: ${key}.`);
|
||||||
}
|
}
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Add table
Reference in a new issue