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

fixed k8s app edit config dropdown default (#5647)

This commit is contained in:
zees-dev 2021-09-20 11:08:24 +12:00 committed by GitHub
parent 414f2c8c60
commit 16dc58a5f1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -294,7 +294,7 @@
<select <select
class="form-control" class="form-control"
ng-model="config.SelectedConfiguration" ng-model="config.SelectedConfiguration"
ng-options="c as c.Name for c in ctrl.configurations" ng-options="c as c.Name for c in ctrl.configurations track by c.Name"
ng-change="ctrl.resetConfiguration(index)" ng-change="ctrl.resetConfiguration(index)"
ng-disabled="ctrl.formValues.Containers.length > 1" ng-disabled="ctrl.formValues.Containers.length > 1"
></select> ></select>