clippy fix
All checks were successful
CI / build (push) Successful in 47s
CI / checks (push) Successful in 1m1s
CI / build-nixpkgs (push) Successful in 38s

This commit is contained in:
Robin Appelman 2025-07-01 17:37:43 +02:00
commit 14734ad089

View file

@ -183,7 +183,7 @@ impl<'a> GroupedLogsState<'a> {
let table_state = ScrollbarTableState::new(trace_len);
UiState::Log(LogState {
log,
full_line,
full_line: Box::new(full_line),
table_state,
previous: Box::new(self.into()),
})
@ -226,7 +226,7 @@ impl PartialEq for ErrorLinesState<'_> {
#[derive(Clone)]
pub struct LogState<'a> {
pub log: &'a LogLine<'a>,
pub full_line: FullLogLine,
pub full_line: Box<FullLogLine>,
pub table_state: ScrollbarTableState,
pub previous: Box<UiState<'a>>,
}