Minor fixes to the domains UI. (#798)
* Fixes checkbox input. * Fixes notification message.
This commit is contained in:
parent
8c41c6785d
commit
3050aca3e6
|
@ -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();
|
||||||
|
|
|
@ -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>
|
||||||
|
|
Loading…
Reference in New Issue