diff --git a/app/components/containers/containers.html b/app/components/containers/containers.html
index e8f681f41..1e13ffac3 100644
--- a/app/components/containers/containers.html
+++ b/app/components/containers/containers.html
@@ -98,6 +98,9 @@
-
+
+ No containers available. |
+
diff --git a/app/components/containers/containersController.js b/app/components/containers/containersController.js
index d807cc226..bbbe506d0 100644
--- a/app/components/containers/containersController.js
+++ b/app/components/containers/containersController.js
@@ -1,7 +1,6 @@
angular.module('containers', [])
.controller('ContainersController', ['$scope', 'Container', 'ContainerHelper', 'Info', 'Settings', 'Messages', 'Config',
function ($scope, Container, ContainerHelper, Info, Settings, Messages, Config) {
-
$scope.state = {};
$scope.state.displayAll = Settings.displayAll;
$scope.state.displayIP = false;
@@ -9,6 +8,7 @@ function ($scope, Container, ContainerHelper, Info, Settings, Messages, Config)
$scope.sortReverse = false;
$scope.state.selectedItemCount = 0;
$scope.swarm_mode = false;
+ $scope.containers = [];
$scope.order = function (sortType) {
$scope.sortReverse = ($scope.sortType === sortType) ? !$scope.sortReverse : false;
diff --git a/app/components/images/images.html b/app/components/images/images.html
index 21fbe57db..1405432c0 100644
--- a/app/components/images/images.html
+++ b/app/components/images/images.html
@@ -107,6 +107,9 @@
{{ image.VirtualSize|humansize }} |
{{ image.Created|getisodatefromtimestamp }} |
+
+ No images available. |
+
diff --git a/app/components/images/imagesController.js b/app/components/images/imagesController.js
index 1f7e0394c..76ff6e29d 100644
--- a/app/components/images/imagesController.js
+++ b/app/components/images/imagesController.js
@@ -5,6 +5,7 @@ function ($scope, $state, Config, Image, Messages) {
$scope.sortType = 'RepoTags';
$scope.sortReverse = true;
$scope.state.selectedItemCount = 0;
+ $scope.images = [];
$scope.config = {
Image: '',
diff --git a/app/components/networks/networks.html b/app/components/networks/networks.html
index d0b5c9fb0..20ebf0f5b 100644
--- a/app/components/networks/networks.html
+++ b/app/components/networks/networks.html
@@ -131,6 +131,9 @@
{{ network.IPAM.Config[0].Subnet ? network.IPAM.Config[0].Subnet : '-' }} |
{{ network.IPAM.Config[0].Gateway ? network.IPAM.Config[0].Gateway : '-' }} |
+
+ No networks available. |
+
diff --git a/app/components/networks/networksController.js b/app/components/networks/networksController.js
index 84e755c07..818f4f58b 100644
--- a/app/components/networks/networksController.js
+++ b/app/components/networks/networksController.js
@@ -6,6 +6,7 @@ function ($scope, $state, Network, Config, Messages) {
$scope.state.advancedSettings = false;
$scope.sortType = 'Name';
$scope.sortReverse = false;
+ $scope.networks = [];
$scope.config = {
Name: ''
diff --git a/app/components/templates/templates.html b/app/components/templates/templates.html
index a53bd09af..b5a479d75 100644
--- a/app/components/templates/templates.html
+++ b/app/components/templates/templates.html
@@ -82,6 +82,9 @@
{{ tpl.title }}
{{ tpl.description }}
+
+ No templates available.
+
diff --git a/app/components/templates/templatesController.js b/app/components/templates/templatesController.js
index 3c373f1c1..dca02bbea 100644
--- a/app/components/templates/templatesController.js
+++ b/app/components/templates/templatesController.js
@@ -7,6 +7,7 @@ function ($scope, $q, $state, $filter, Config, Info, Container, ContainerHelper,
network: "",
name: ""
};
+ $scope.templates = [];
var selectedItem = -1;
diff --git a/app/components/volumes/volumes.html b/app/components/volumes/volumes.html
index 701f4c761..4c3ae2072 100644
--- a/app/components/volumes/volumes.html
+++ b/app/components/volumes/volumes.html
@@ -59,6 +59,9 @@
{{ volume.Driver }} |
{{ volume.Mountpoint }} |
+
+ No volumes available. |
+
diff --git a/app/components/volumes/volumesController.js b/app/components/volumes/volumesController.js
index 90c9880e5..fc0dc8888 100644
--- a/app/components/volumes/volumesController.js
+++ b/app/components/volumes/volumesController.js
@@ -5,6 +5,7 @@ function ($scope, $state, Volume, Messages) {
$scope.state.selectedItemCount = 0;
$scope.sortType = 'Name';
$scope.sortReverse = true;
+ $scope.volumes = [];
$scope.config = {
Name: ''
diff --git a/assets/css/app.css b/assets/css/app.css
index c993c6230..d544242af 100644
--- a/assets/css/app.css
+++ b/assets/css/app.css
@@ -238,12 +238,12 @@ input[type="radio"] {
}
.container-template--selected {
- background-color: #f6f6f6;
+ background-color: #ececec;
color: #2d3e63;
}
.container-template:hover {
- background-color: #f6f6f6;
+ background-color: #ececec;
color: #2d3e63;
}