mirror of https://github.com/portainer/portainer
fix(container-details): fix an issue with duplicate env var (#863)
parent
0579251c70
commit
0ba6645df0
|
@ -193,7 +193,7 @@
|
|||
<td>ENV</td>
|
||||
<td>
|
||||
<table class="table table-bordered table-condensed">
|
||||
<tr ng-repeat="var in container.Config.Env">
|
||||
<tr ng-repeat="var in container.Config.Env track by $index">
|
||||
<td>{{ var|key: '=' }}</td>
|
||||
<td>{{ var|value: '=' }}</td>
|
||||
</tr>
|
||||
|
|
Loading…
Reference in New Issue