Skip to content

Commit

Permalink
Fix alignment of user enabled checkbox
Browse files Browse the repository at this point in the history
* Fix HTML syntax in users.html. Fix extra quote and remove form-control class from checkbox.
* Fix alignment of checkbox
  • Loading branch information
juanluisrp committed Feb 15, 2024
1 parent 7a33511 commit 4f780b3
Showing 1 changed file with 14 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -137,9 +137,20 @@
/>

<div class="form-group" data-ng-hide="user.id == userSelected.id">
<label class="control-label col-sm-3" data-translate="">enable</label>
<div class="col-sm-9">
<input type="checkbox" class=form-control" data-ng-model="userIsEnabled"/>
<label
class="control-label col-sm-3"
data-translate=""
for="userIsEnabledCheck"
>enable</label
>
<div class="col-sm-9 checkbox">
<label>
<input
type="checkbox"
data-ng-model="userIsEnabled"
id="userIsEnabledCheck"
/>
</label>
</div>
</div>

Expand Down

0 comments on commit 4f780b3

Please sign in to comment.