Skip to content

Commit

Permalink
Fix for #1736: fix table width, avoid overflow (#1741)
Browse files Browse the repository at this point in the history
  • Loading branch information
jsiegenthaler committed Nov 19, 2023
1 parent 35eaab7 commit e633bed
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ <h5 class="modal-title">{{ service.customName || service.serviceName }}</h5>
type="text" id="form-name" autocomplete="off" class="form-control pl-0 pr-0">
<label for="form-name" class="active" [translate]="'accessories.label_name'">Name</label>
</div>
<table class="table table-borderless table-hover table-striped table-sm">
<table class="table table-borderless table-hover table-striped table-sm" style="table-layout:fixed; width:100%;">
<tbody>
<tr>
<th>{{ service.humanType }}</th>
Expand Down

0 comments on commit e633bed

Please sign in to comment.