disable rollback button when application type is not applicatiom form

pull/5568/head
Felix Han 2021-09-01 16:29:24 +12:00
parent b43fb6b5e6
commit b2da6101b6
1 changed files with 1 additions and 1 deletions

View File

@ -219,7 +219,7 @@
class="btn btn-sm btn-primary"
style="margin-left: 0; margin-bottom: 15px;"
ng-click="ctrl.rollbackApplication()"
ng-disabled="ctrl.application.Revisions.length < 2"
ng-disabled="ctrl.application.Revisions.length < 2 || ctrl.state.appType !== ctrl.KubernetesDeploymentTypes.APPLICATION_FORM"
>
<i class="fas fa-history space-right" aria-hidden="true"></i>Rollback to previous configuration
</button>