Fix custom plugin downloaders

This commit is contained in:
phil 2024-04-06 13:13:11 +05:30
parent bba056105a
commit 998efbaf72

View file

@ -22,6 +22,9 @@ export class DownloaderComponent implements OnInit {
} }
execute() { execute() {
window.open('/downloader/' + this.downloader.name + '/' + this.source.modelInfo.store + '/' + this.source.featureInfo.id) window.open('/api/download/plugin/'
+ '/' + this.downloader.name
+ '/' + this.source.modelInfo.store
+ '/' + this.source.featureInfo.id)
} }
} }