style(host-details): fix spelling mistake in filter's name

pull/2255/head
Chaim Lando 2018-09-13 11:49:24 +03:00
parent 6751fab987
commit dc1ab3ffc3
4 changed files with 6 additions and 6 deletions

View File

@ -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>

View File

@ -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>

View File

@ -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>

View File

@ -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;
}