Merge pull request #2437 from patriot1burke/master

KEYCLOAK-2698
This commit is contained in:
Bill Burke 2016-03-28 10:21:54 -04:00
commit 73d74f69c3

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;
});
};