Skip to content

Commit 7a76fa7

Browse files
author
Tim Bruijnzeels
committed
Add scrollbar to CA selection #1071
1 parent 1a6dc2f commit 7a76fa7

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

src/daemon/http/statics.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ pub async fn statics(req: Request) -> RoutingResult {
1717

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

20-
"/assets/index-26056008.js" => Ok(HttpResponse::js(JS_INDEX)),
20+
"/assets/index-f2114f92.js" => Ok(HttpResponse::js(JS_INDEX)),
2121

2222
"/assets/en-6862b1fd.js" => Ok(HttpResponse::js(JS_TRANSLATIONS_ENGLISH)),
2323
"/assets/de-a07fd626.js" => Ok(HttpResponse::js(JS_TRANSLATIONS_GERMAN)),
@@ -27,7 +27,7 @@ pub async fn statics(req: Request) -> RoutingResult {
2727
"/assets/nl-ac928f6f.js" => Ok(HttpResponse::js(JS_TRANSLATIONS_DUTCH)),
2828
"/assets/pt-108a6a72.js" => Ok(HttpResponse::js(JS_TRANSLATIONS_PORTUGUESE)),
2929

30-
"/assets/index-52409a7e.css" => Ok(HttpResponse::css(CSS)),
30+
"/assets/index-3c0611ee.css" => Ok(HttpResponse::css(CSS)),
3131

3232
"/assets/check-3e734f78.svg" => Ok(HttpResponse::svg(SVG_CHECK)),
3333
"/assets/check-green-4525c79c.svg" => Ok(HttpResponse::svg(SVG_CHECK_GREEN)),
@@ -68,7 +68,7 @@ pub static INDEX: &[u8] = include_bytes!("../../../ui/index.html");
6868

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

71-
static JS_INDEX: &[u8] = include_bytes!("../../../ui/assets/index-26056008.js");
71+
static JS_INDEX: &[u8] = include_bytes!("../../../ui/assets/index-f2114f92.js");
7272

7373
static JS_TRANSLATIONS_GERMAN: &[u8] = include_bytes!("../../../ui/assets/de-a07fd626.js");
7474
static JS_TRANSLATIONS_ENGLISH: &[u8] = include_bytes!("../../../ui/assets/en-6862b1fd.js");
@@ -78,7 +78,7 @@ static JS_TRANSLATIONS_GREEK: &[u8] = include_bytes!("../../../ui/assets/gr-094d
7878
static JS_TRANSLATIONS_DUTCH: &[u8] = include_bytes!("../../../ui/assets/nl-ac928f6f.js");
7979
static JS_TRANSLATIONS_PORTUGUESE: &[u8] = include_bytes!("../../../ui/assets/pt-108a6a72.js");
8080

81-
static CSS: &[u8] = include_bytes!("../../../ui/assets/index-52409a7e.css");
81+
static CSS: &[u8] = include_bytes!("../../../ui/assets/index-3c0611ee.css");
8282

8383
static SVG_CHECK: &[u8] = include_bytes!("../../../ui/assets/check-3e734f78.svg");
8484
static SVG_CHECK_GREEN: &[u8] = include_bytes!("../../../ui/assets/check-green-4525c79c.svg");

ui/assets/index-3c0611ee.css

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)