mirror of
https://github.com/dani-garcia/vaultwarden.git
synced 2025-08-30 22:44:48 +00:00
Update dependencies for Rust and Admin interface.
- Updated Rust deps and one small change regarding chrono - Updated bootstrap 5 css - Updated datatables - Replaced identicon.js with jdenticon. identicon.js is unmaintained ( https://github.com/stewartlord/identicon.js/issues/52 ) The icon's are very different, but nice. It also doesn't need custom code to find and update the icons our selfs.
This commit is contained in:
parent
8feed2916f
commit
610b183cef
11 changed files with 1756 additions and 497 deletions
|
@ -16,7 +16,7 @@
|
|||
{{#each page_data}}
|
||||
<tr>
|
||||
<td>
|
||||
<img class="float-start me-2 rounded identicon" data-src="{{Id}}">
|
||||
<svg width="48" height="48" class="float-start me-2 rounded" data-jdenticon-value="{{Id}}">
|
||||
<div class="float-start">
|
||||
<strong>{{Name}}</strong>
|
||||
<span class="me-2">({{BillingEmail}})</span>
|
||||
|
@ -73,12 +73,6 @@
|
|||
return false;
|
||||
}
|
||||
|
||||
(async () => {
|
||||
for (let e of document.querySelectorAll("img.identicon")) {
|
||||
e.src = await identicon(e.dataset.src);
|
||||
}
|
||||
})();
|
||||
|
||||
document.addEventListener("DOMContentLoaded", function() {
|
||||
$('#orgs-table').DataTable({
|
||||
"responsive": true,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue