Skip to content

Commit

Permalink
changed download_url
Browse files Browse the repository at this point in the history
  • Loading branch information
ck-c8y committed Nov 29, 2023
1 parent e1e380f commit b40efb2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion analytics-ui/src/sample/list/sample.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ export class SampleGridComponent implements OnInit {
const monitors = [];
for (let i = 0; i < this.samples.length; i++) {
if (ids.includes(this.samples[i].id)) {
monitors.push(this.samples[i].url);
monitors.push(this.samples[i].downloadUrl);
}
}
const initialState = {
Expand Down
1 change: 1 addition & 0 deletions analytics-ui/src/shared/analytics.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,7 @@ export class AnalyticsService {
body: JSON.stringify({
extension_name: name,
monitors: monitors,
upload: false,
}),
method: "POST",
responseType: "blob",
Expand Down

0 comments on commit b40efb2

Please sign in to comment.