diff --git a/src/views/domains.html b/src/views/domains.html
index 4aa034619..76e1923ed 100644
--- a/src/views/domains.html
+++ b/src/views/domains.html
@@ -226,7 +226,6 @@
- |
Domain |
Provider |
Actions |
@@ -234,18 +233,15 @@
- |
-
- |
-
+ |
{{ domain.domain }}
|
-
+ |
{{ prettyProviderName(domain) }}
|
-
-
+
+
|
diff --git a/src/views/domains.js b/src/views/domains.js
index dd1d331d6..d230afd11 100644
--- a/src/views/domains.js
+++ b/src/views/domains.js
@@ -81,11 +81,6 @@ angular.module('Application').controller('DomainsController', ['$scope', '$locat
if (error) return console.error(error);
asyncForEach(results, function (result, iteratorDone) {
- if (result.locked) {
- domains.push(result);
- return iteratorDone();
- }
-
Client.getDomain(result.domain, function (error, domain) {
if (error) return iteratorDone(error);