diff --git a/app/components/containers/containers.html b/app/components/containers/containers.html
index de61fee67..5e66102ad 100644
--- a/app/components/containers/containers.html
+++ b/app/components/containers/containers.html
@@ -64,7 +64,7 @@
-
+
|
{{ container|containername}} |
{{ container.Image }} |
diff --git a/app/components/containers/containersController.js b/app/components/containers/containersController.js
index 87b301501..02f7dbc88 100644
--- a/app/components/containers/containersController.js
+++ b/app/components/containers/containersController.js
@@ -6,7 +6,7 @@ angular.module('containers', [])
$scope.toggle = false;
$scope.displayAll = Settings.displayAll;
- $scope.order = function(sortType) {
+ $scope.order = function (sortType) {
$scope.sortReverse = ($scope.sortType === sortType) ? !$scope.sortReverse : false;
$scope.sortType = sortType;
};
@@ -76,7 +76,7 @@ angular.module('containers', [])
};
$scope.toggleSelectAll = function () {
- angular.forEach($scope.containers, function (i) {
+ angular.forEach($scope.filteredContainers, function (i) {
i.Checked = $scope.toggle;
});
};
diff --git a/app/components/images/images.html b/app/components/images/images.html
index 3f89048b2..94e9e0c5e 100644
--- a/app/components/images/images.html
+++ b/app/components/images/images.html
@@ -53,7 +53,7 @@
-
+
|
{{ image.Id|truncate:20}} |
{{ image|repotag }} |
diff --git a/app/components/images/imagesController.js b/app/components/images/imagesController.js
index ace6cce77..3f68dbae0 100644
--- a/app/components/images/imagesController.js
+++ b/app/components/images/imagesController.js
@@ -42,7 +42,7 @@ angular.module('images', [])
};
$scope.toggleSelectAll = function () {
- angular.forEach($scope.images, function (i) {
+ angular.forEach($scope.filteredImages, function (i) {
i.Checked = $scope.toggle;
});
};
diff --git a/app/components/networks/networks.html b/app/components/networks/networks.html
index 138ef70de..8a85a0dc8 100644
--- a/app/components/networks/networks.html
+++ b/app/components/networks/networks.html
@@ -72,7 +72,7 @@
-
+
|
{{ network.Name|truncate:20}} |
{{ network.Id }} |
diff --git a/app/components/networks/networksController.js b/app/components/networks/networksController.js
index 6f0f7729e..6afd3a167 100644
--- a/app/components/networks/networksController.js
+++ b/app/components/networks/networksController.js
@@ -52,7 +52,7 @@ angular.module('networks', []).config(['$routeProvider', function ($routeProvide
};
$scope.toggleSelectAll = function () {
- angular.forEach($scope.networks, function (i) {
+ angular.forEach($scope.filteredNetworks, function (i) {
i.Checked = $scope.toggle;
});
};
diff --git a/app/components/volumes/volumes.html b/app/components/volumes/volumes.html
index d017972d5..10e4aa642 100644
--- a/app/components/volumes/volumes.html
+++ b/app/components/volumes/volumes.html
@@ -44,7 +44,7 @@
-
+
|
{{ volume.Name|truncate:20 }} |
{{ volume.Driver }} |
diff --git a/app/components/volumes/volumesController.js b/app/components/volumes/volumesController.js
index 6c9dd34e7..c5ae29091 100644
--- a/app/components/volumes/volumesController.js
+++ b/app/components/volumes/volumesController.js
@@ -45,7 +45,7 @@ angular.module('volumes', []).config(['$routeProvider', function ($routeProvider
};
$scope.toggleSelectAll = function () {
- angular.forEach($scope.volumes, function (i) {
+ angular.forEach($scope.filteredVolumes, function (i) {
i.Checked = $scope.toggle;
});
};