Fix the dns check notification link

This commit is contained in:
Johannes Zellner
2018-05-11 11:05:28 +02:00
parent 6605a38eab
commit a2e03ccf7a

View File

@@ -74,7 +74,7 @@ angular.module('Application').controller('MainController', ['$scope', '$route',
// warn user if dns config is not working (the 'configuring' flag detects if configureWebadmin is 'active')
if (!$scope.status.webadminStatus.configuring && !$scope.status.webadminStatus.dns) {
var dnsActionScope = $scope.$new(true);
dnsActionScope.action = '/#/certs';
dnsActionScope.action = '/#/domains';
Client.notify('Invalid Domain Config', 'Unable to update DNS. Click here to update it.', true, 'error', dnsActionScope);
}