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>
<tr> <tr>
<td>Volume Plugins</td> <td>Volume Plugins</td>
<td>{{ $ctrl.engine.volumePlugins | commaSeperated }}</td> <td>{{ $ctrl.engine.volumePlugins | commaSeparated }}</td>
</tr> </tr>
<tr> <tr>
<td>Network Plugins</td> <td>Network Plugins</td>
<td>{{ $ctrl.engine.networkPlugins | commaSeperated }}</td> <td>{{ $ctrl.engine.networkPlugins | commaSeparated }}</td>
</tr> </tr>
</tbody> </tbody>
</table> </table>

View File

@ -31,7 +31,7 @@
</tr> </tr>
<tr ng-if="$ctrl.host.pciDevices"> <tr ng-if="$ctrl.host.pciDevices">
<td>Installed PCI devices</td> <td>Installed PCI devices</td>
<td>{{ $ctrl.host.pciDevices |commaSeperated }}</td> <td>{{ $ctrl.host.pciDevices |commaSeparated }}</td>
</tr> </tr>
<tr ng-if="$ctrl.host.physicalDisk"> <tr ng-if="$ctrl.host.physicalDisk">
<td>Physical disk</td> <td>Physical disk</td>

View File

@ -28,7 +28,7 @@
</tr> </tr>
<tr> <tr>
<td>Engine Labels</td> <td>Engine Labels</td>
<td>{{ $ctrl.details.engineLabels | commaSeperated }}</td> <td>{{ $ctrl.details.engineLabels | commaSeparated }}</td>
</tr> </tr>
<tr> <tr>
<td> <td>

View File

@ -270,9 +270,9 @@ angular.module('portainer.docker')
return _.split(imageName, '@sha256')[0]; return _.split(imageName, '@sha256')[0];
}; };
}) })
.filter('commaSeperated', function commaSeperatedFilter() { .filter('commaSeparated', function commaSeparatedFilter() {
'use strict'; 'use strict';
return function commaSeperated(list) { return function commaSeparated(list) {
if (!list) { if (!list) {
return list; return list;
} }