Skip to content

Commit

Permalink
Show ROA delete when no BGP info is available (#1139)
Browse files Browse the repository at this point in the history
Updates to krill-ui 463bd30a75ff53c661bce6e40d47060478ba4f94
  • Loading branch information
Tim Bruijnzeels committed Oct 18, 2023
1 parent 2ad806c commit 4f6ff8b
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions src/daemon/http/statics.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ pub async fn statics(req: Request) -> RoutingResult {

"/assets/favicon-f84116cb.ico" => Ok(HttpResponse::fav(FAVICON)),

"/assets/index-23df6ad0.js" => Ok(HttpResponse::js(JS_INDEX)),
"/assets/index-0659e542.js" => Ok(HttpResponse::js(JS_INDEX)),

"/assets/en-d3d88bc8.js" => Ok(HttpResponse::js(JS_TRANSLATIONS_ENGLISH)),
"/assets/de-aaa0f1e4.js" => Ok(HttpResponse::js(JS_TRANSLATIONS_GERMAN)),
Expand Down Expand Up @@ -70,7 +70,7 @@ pub static INDEX: &[u8] = include_bytes!("../../../ui/index.html");

static FAVICON: &[u8] = include_bytes!("../../../ui/assets/favicon-f84116cb.ico");

static JS_INDEX: &[u8] = include_bytes!("../../../ui/assets/index-23df6ad0.js");
static JS_INDEX: &[u8] = include_bytes!("../../../ui/assets/index-0659e542.js");

static JS_TRANSLATIONS_GERMAN: &[u8] = include_bytes!("../../../ui/assets/de-aaa0f1e4.js");
static JS_TRANSLATIONS_ENGLISH: &[u8] = include_bytes!("../../../ui/assets/en-d3d88bc8.js");
Expand Down
Loading

0 comments on commit 4f6ff8b

Please sign in to comment.