mirror of
https://github.com/hrfee/jfa-go.git
synced 2024-11-04 17:30:11 +00:00
fix table wrapping
This commit is contained in:
parent
7ac750879f
commit
2b84e45b65
@ -137,12 +137,12 @@ function populateUsers() {
|
|||||||
isAdmin = "Yes";
|
isAdmin = "Yes";
|
||||||
}
|
}
|
||||||
return `
|
return `
|
||||||
<td 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" scope="row"><input class="form-check-input" type="checkbox" value="" id="select_${id}" onclick="checkCheckboxes();"></td>
|
||||||
<td class="align-middle">${username}</td>
|
<td nowrap="nowrap" class="align-middle">${username}</td>
|
||||||
<td class="align-middle">${generateEmail(id, name, email)}</td>
|
<td nowrap="nowrap" class="align-middle">${generateEmail(id, name, email)}</td>
|
||||||
<td class="align-middle">${lastActive}</td>
|
<td nowrap="nowrap" class="align-middle">${lastActive}</td>
|
||||||
<td class="align-middle">${isAdmin}</td>
|
<td nowrap="nowrap" 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"><i class="fa fa-eye icon-button" id="viewConfig_${id}"></i></td>`;
|
||||||
};
|
};
|
||||||
|
|
||||||
let req = new XMLHttpRequest();
|
let req = new XMLHttpRequest();
|
||||||
|
@ -339,7 +339,7 @@
|
|||||||
<button type="button" class="btn btn-danger unfocused" id="accountsTabDelete"></button>
|
<button type="button" class="btn btn-danger unfocused" id="accountsTabDelete"></button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="card-body">
|
<div class="card-body table-responsive">
|
||||||
<table class="table table-hover table-striped table-borderless">
|
<table class="table table-hover table-striped table-borderless">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
|
Loading…
Reference in New Issue
Block a user