fix table wrapping

pull/20/head
Harvey Tindall 4 years ago
parent 7ac750879f
commit 2b84e45b65
No known key found for this signature in database
GPG Key ID: BBC65952848FB1A2

@ -137,12 +137,12 @@ function populateUsers() {
isAdmin = "Yes";
}
return `
<td class="align-middle" scope="row"><input class="form-check-input" type="checkbox" value="" id="select_${id}" onclick="checkCheckboxes();"></td>
<td class="align-middle">${username}</td>
<td class="align-middle">${generateEmail(id, name, email)}</td>
<td class="align-middle">${lastActive}</td>
<td class="align-middle">${isAdmin}</td>
<td class="align-middle"><i class="fa fa-eye icon-button" id="viewConfig_${id}"></i></td>`;
<td nowrap="nowrap" class="align-middle" scope="row"><input class="form-check-input" type="checkbox" value="" id="select_${id}" onclick="checkCheckboxes();"></td>
<td nowrap="nowrap" class="align-middle">${username}</td>
<td nowrap="nowrap" class="align-middle">${generateEmail(id, name, email)}</td>
<td nowrap="nowrap" class="align-middle">${lastActive}</td>
<td nowrap="nowrap" class="align-middle">${isAdmin}</td>
<td nowrap="nowrap" class="align-middle"><i class="fa fa-eye icon-button" id="viewConfig_${id}"></i></td>`;
};
let req = new XMLHttpRequest();

@ -339,7 +339,7 @@
<button type="button" class="btn btn-danger unfocused" id="accountsTabDelete"></button>
</div>
</div>
<div class="card-body">
<div class="card-body table-responsive">
<table class="table table-hover table-striped table-borderless">
<thead>
<tr>

Loading…
Cancel
Save