mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-16 10:58:30 -05:00
Machine Learning Services R Packages (#8870)
* R Package management in Machine learning services extension
This commit is contained in:
@@ -144,10 +144,10 @@ export class InstalledPackagesTab {
|
||||
this.dialog.model.currentPackageType)
|
||||
});
|
||||
|
||||
if (packageData && packageData.length > 0) {
|
||||
if (packageData) {
|
||||
await this.installedPackagesTable.updateProperties({
|
||||
data: packageData,
|
||||
selectedRows: [0]
|
||||
selectedRows: packageData.length > 0 ? [0] : []
|
||||
});
|
||||
await this.uninstallPackageButton.updateProperties({ enabled: true });
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user