KEYCLOAK-2698

This commit is contained in:
Bill Burke 2016-03-28 10:20:27 -04:00
parent 17fcc38157
commit 28c70fa8ab

View file

@ -1112,6 +1112,9 @@ module.controller('CreateClientCtrl', function($scope, realm, client, templates,
realm: realm.realm
}, fileContent, function (data) {
$scope.client = data;
if (data.protocol) {
$scope.protocol = data.protocol;
}
$scope.importing = true;
});
};