Skip to content

Commit

Permalink
fix parameters in dto
Browse files Browse the repository at this point in the history
  • Loading branch information
salmma committed Jul 11, 2024
1 parent c729b07 commit 6621254
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -236,10 +236,13 @@ export class NisqAnalyzerComponent implements OnInit {
dialogResult.awsToken,
dialogResult.awsSecretToken
);
const analyzeParams = Object.assign.apply(undefined, [
...dialogResult.params,
]);
this.nisqAnalyzerService
.analyze({
algorithmId: this.algo.id,
parameters: dialogResult.params,
parameters: analyzeParams,
tokens: tokensToDeliver,
refreshToken,
allowedProviders: dialogResult.vendors,
Expand Down

0 comments on commit 6621254

Please sign in to comment.