1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-08-02 20:35:25 +02:00

fix helm install (#10479)

This commit is contained in:
Prabhat Khera 2023-10-17 07:50:13 +13:00 committed by GitHub
parent 07ec2ffe5e
commit 35448c7f48
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 5 deletions

View file

@ -40,8 +40,4 @@ export default class HelmTemplatesListController {
this.updateCategories();
}
}
$onInit() {
return this.$async();
}
}

View file

@ -82,7 +82,7 @@
<button
type="button"
class="btn btn-primary btn-sm !ml-0"
ng-disabled="!($ctrl.stackName && $ctrl.state.resourcePool && !$ctrl.state.loadingValues && !$ctrl.state.actionInProgress)"
ng-disabled="!$ctrl.state.resourcePool || $ctrl.state.loadingValues || $ctrl.state.actionInProgress"
ng-click="$ctrl.installHelmchart()"
button-spinner="$ctrl.state.actionInProgress"
data-cy="helm-install"