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>
|
||||||
<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>
|
||||||
|
|
|
@ -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>
|
||||||
|
|
|
@ -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>
|
||||||
|
|
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue