diff options
author | KrupaNagabhushan <krupa.nagabhushan@est.tech> | 2022-10-26 17:26:54 +0100 |
---|---|---|
committer | KrupaNagabhushan <krupa.nagabhushan@est.tech> | 2023-01-19 15:23:12 +0000 |
commit | 3943534cd3409c0cca6588f36527df34345d74f2 (patch) | |
tree | fc10c05a93fe853f21f1f3beddf5d0557d7bad1d /catalog-ui/src/app/ng2/components | |
parent | 8edfa4dee9fed9be5b38133847c60136294eba80 (diff) |
Download data type from UI
Issue-ID: SDC-4332
Signed-off-by: KrupaNagabhushan <krupa.nagabhushan@est.tech>
Change-Id: If31f7a95eb2d568e716760a33ef2641bad09cf68
Diffstat (limited to 'catalog-ui/src/app/ng2/components')
-rw-r--r-- | catalog-ui/src/app/ng2/components/ui/download-artifact/download-artifact.component.ts | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/catalog-ui/src/app/ng2/components/ui/download-artifact/download-artifact.component.ts b/catalog-ui/src/app/ng2/components/ui/download-artifact/download-artifact.component.ts index 8f47456a8f..fee2e0e91d 100644 --- a/catalog-ui/src/app/ng2/components/ui/download-artifact/download-artifact.component.ts +++ b/catalog-ui/src/app/ng2/components/ui/download-artifact/download-artifact.component.ts @@ -1,5 +1,5 @@ import { Component, Input } from "@angular/core"; -import {IFileDownload, Component as TopologyTemplate, ArtifactModel, FullComponentInstance} from "app/models"; +import {IFileDownload, ArtifactModel} from "app/models"; import {EventListenerService} from "app/services"; import {CacheService} from "app/services-ng2"; import {EVENTS} from "app/utils"; @@ -59,8 +59,8 @@ export class DownloadArtifactComponent { public download = (event) => { event.stopPropagation(); - let onFaild = (response):void => { - console.info('onFaild', response); + let onFailed = (response):void => { + console.info('onFailed', response); this.removeDownloadedFileLoader(); }; @@ -72,9 +72,9 @@ export class DownloadArtifactComponent { this.setDownloadedFileLoader(); if (this.isInstance) { - this.componentInstanceService.downloadInstanceArtifact(this.workspaceService.metadata.componentType, this.workspaceService.metadata.uniqueId, this.componentId, this.artifact.uniqueId).subscribe(onSuccess, onFaild); + this.componentInstanceService.downloadInstanceArtifact(this.workspaceService.metadata.componentType, this.workspaceService.metadata.uniqueId, this.componentId, this.artifact.uniqueId).subscribe(onSuccess, onFailed); } else { - this.topologyTemplateService.downloadArtifact(this.componentType, this.componentId, this.artifact.uniqueId).subscribe(onSuccess, onFaild); + this.topologyTemplateService.downloadArtifact(this.componentType, this.componentId, this.artifact.uniqueId).subscribe(onSuccess, onFailed); } }; |