diff options
author | BlackDex <[email protected]> | 2022-12-01 17:18:29 +0100 |
---|---|---|
committer | BlackDex <[email protected]> | 2022-12-04 18:38:46 +0100 |
commit | 610b183cef5111ea51aaf7e85e58baf779610fc1 (patch) | |
tree | db19627b55d9494e208bd573c8e24b2792b0befe /src/api/web.rs | |
parent | 8feed2916fee7a06e82e6df5070a9c4ee042bcd0 (diff) | |
download | vaultwarden-610b183cef5111ea51aaf7e85e58baf779610fc1.tar.gz vaultwarden-610b183cef5111ea51aaf7e85e58baf779610fc1.zip |
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.
Diffstat (limited to 'src/api/web.rs')
-rw-r--r-- | src/api/web.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/api/web.rs b/src/api/web.rs index cfc4b9e0..e5485123 100644 --- a/src/api/web.rs +++ b/src/api/web.rs @@ -98,7 +98,7 @@ pub fn static_files(filename: String) -> Result<(ContentType, &'static [u8]), Er "vaultwarden-icon.png" => Ok((ContentType::PNG, include_bytes!("../static/images/vaultwarden-icon.png"))), "bootstrap.css" => Ok((ContentType::CSS, include_bytes!("../static/scripts/bootstrap.css"))), "bootstrap-native.js" => Ok((ContentType::JavaScript, include_bytes!("../static/scripts/bootstrap-native.js"))), - "identicon.js" => Ok((ContentType::JavaScript, include_bytes!("../static/scripts/identicon.js"))), + "jdenticon.js" => Ok((ContentType::JavaScript, include_bytes!("../static/scripts/jdenticon.js"))), "datatables.js" => Ok((ContentType::JavaScript, include_bytes!("../static/scripts/datatables.js"))), "datatables.css" => Ok((ContentType::CSS, include_bytes!("../static/scripts/datatables.css"))), "jquery-3.6.1.slim.js" => { |