mirror of https://github.com/portainer/portainer
style(host-details): fix spelling mistake in filter's name
parent
6751fab987
commit
dc1ab3ffc3
|
@ -23,11 +23,11 @@
|
|||
</tr>
|
||||
<tr>
|
||||
<td>Volume Plugins</td>
|
||||
<td>{{ $ctrl.engine.volumePlugins | commaSeperated }}</td>
|
||||
<td>{{ $ctrl.engine.volumePlugins | commaSeparated }}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Network Plugins</td>
|
||||
<td>{{ $ctrl.engine.networkPlugins | commaSeperated }}</td>
|
||||
<td>{{ $ctrl.engine.networkPlugins | commaSeparated }}</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
|
|
@ -31,7 +31,7 @@
|
|||
</tr>
|
||||
<tr ng-if="$ctrl.host.pciDevices">
|
||||
<td>Installed PCI devices</td>
|
||||
<td>{{ $ctrl.host.pciDevices |commaSeperated }}</td>
|
||||
<td>{{ $ctrl.host.pciDevices |commaSeparated }}</td>
|
||||
</tr>
|
||||
<tr ng-if="$ctrl.host.physicalDisk">
|
||||
<td>Physical disk</td>
|
||||
|
|
|
@ -28,7 +28,7 @@
|
|||
</tr>
|
||||
<tr>
|
||||
<td>Engine Labels</td>
|
||||
<td>{{ $ctrl.details.engineLabels | commaSeperated }}</td>
|
||||
<td>{{ $ctrl.details.engineLabels | commaSeparated }}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
|
|
|
@ -270,9 +270,9 @@ angular.module('portainer.docker')
|
|||
return _.split(imageName, '@sha256')[0];
|
||||
};
|
||||
})
|
||||
.filter('commaSeperated', function commaSeperatedFilter() {
|
||||
.filter('commaSeparated', function commaSeparatedFilter() {
|
||||
'use strict';
|
||||
return function commaSeperated(list) {
|
||||
return function commaSeparated(list) {
|
||||
if (!list) {
|
||||
return list;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue