Skip to content

Commit

Permalink
Merge pull request #411 from mayuradesh/develop
Browse files Browse the repository at this point in the history
MOSIP-27440 fixed sonar UI bugs
  • Loading branch information
mayuradesh committed Jun 26, 2023
2 parents 8b8824c + a6acc0c commit d09e7b0
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -779,8 +779,8 @@ export class ExecuteTestRunComponent implements OnInit {
}
console.log(`this.abisSentDataSource ${this.abisSentDataSource}`);
this.subscribeToABISQueue(requestId);
const p = await new Promise(async (resolve, reject) => { });
return p;
await new Promise(async (resolve, reject) => { });
return true;
} else {
console.log("INSERT REQUEST FAILED");
this.cbeffFileSuffix = 0;
Expand Down Expand Up @@ -843,8 +843,8 @@ export class ExecuteTestRunComponent implements OnInit {
return res;
} else {
//no resp to keep the for loop on hold
const p = await new Promise(async (resolve, reject) => { });
return p;
await new Promise(async (resolve, reject) => { });
//return p;
}
} else {
if (this.showResumeBtn) {
Expand Down Expand Up @@ -881,8 +881,8 @@ export class ExecuteTestRunComponent implements OnInit {
return res;
} else {
//no resp to keep the for loop on hold
const p = await new Promise(async (resolve, reject) => { });
return p;
await new Promise(async (resolve, reject) => { });
//return p;
}
}
//});
Expand Down

0 comments on commit d09e7b0

Please sign in to comment.