Minor fixes to the domains UI. (#798)

* Fixes checkbox input.

* Fixes notification message.
This commit is contained in:
kevgliss 2017-05-15 19:14:12 -07:00 committed by GitHub
parent 8c41c6785d
commit 3050aca3e6
2 changed files with 2 additions and 2 deletions

View File

@ -10,7 +10,7 @@ angular.module('lemur')
function () { function () {
toaster.pop({ toaster.pop({
type: 'success', type: 'success',
title: domain, title: domain.name,
body: 'Successfully Created!' body: 'Successfully Created!'
}); });
$uibModalInstance.close(); $uibModalInstance.close();

View File

@ -19,7 +19,7 @@
Sensitive Sensitive
</label> </label>
<div class="col-sm-10"> <div class="col-sm-10">
<checkbox name="sensitive" ng-model="domain.sensitive" class="form-control" ></checkbox> <input type="checkbox" name="sensitive" ng-model="domain.sensitive" class="form-control">
</div> </div>
</div> </div>
</form> </form>