Compare commits

..

4 commits

Author SHA1 Message Date
a80359343b
chore: fix clippy lints; format
Signed-off-by: NotAShelf <raf@notashelf.dev>
Change-Id: Ib3d98a81c7e41054d27e617394bef63c6a6a6964
2026-03-11 21:31:04 +03:00
c25617670a
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:03 +03:00
24b31bfeb9
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:02 +03:00
bea42524f2
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:01 +03:00

View file

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