Compare commits

..

4 commits

Author SHA1 Message Date
b6e579408f
chore: fix clippy lints; format
Signed-off-by: NotAShelf <raf@notashelf.dev>
Change-Id: Ib3d98a81c7e41054d27e617394bef63c6a6a6964
2026-03-11 21:31:43 +03:00
9176b764b0
examples/media-stats-ui: fix Transform source key; add file_name column
Signed-off-by: NotAShelf <raf@notashelf.dev>
Change-Id: I4c741e4b36708f2078fed8154d7341de6a6a6964
2026-03-11 21:31:42 +03:00
6d42ac0f48
pinakes-ui: integrate plugin pages into sidebar navigation; sanitize theme-extension CSS eval
Signed-off-by: NotAShelf <raf@notashelf.dev>
Change-Id: Ie87e39c66253a7071f029d52dd5979716a6a6964
2026-03-11 21:31:41 +03:00
7b841cbd9a
pinakes-ui: supply local_state to Conditional and Progress; remove last_refresh
Signed-off-by: NotAShelf <raf@notashelf.dev>
Change-Id: Ib513b5846d6c74bfe821da195b7080af6a6a6964
2026-03-11 21:31:40 +03:00

View file

@ -1624,8 +1624,8 @@ fn safe_col_width_css(w: &str) -> Option<String> {
None
}
/// Convert a snake_case JSON key to a human-readable title.
/// `avg_file_size_bytes` `Avg File Size Bytes`
/// Convert a `snake_case` JSON key to a human-readable title.
/// `avg_file_size_bytes` -> `Avg File Size Bytes`
fn format_key_name(key: &str) -> String {
key
.split('_')