We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3a2e82a commit d2752feCopy full SHA for d2752fe
src/app.rs
@@ -112,6 +112,7 @@ impl LogViewerApp {
112
.main_list_fields()
113
.iter()
114
.take(n - 1)
115
+ // TODO 1: Check if this should be just `n` and not `n-1`
116
{
117
table_builder = table_builder.column(Column::auto());
118
}
@@ -612,6 +613,7 @@ impl LogViewerApp {
612
613
} else {
614
"Click to Highlight warning"
615
};
616
+ // TODO 3: Add an option to select how fields are filter and not only exact match
617
if ui
618
.colored_label(color, "(Field filtering enabled)")
619
.on_hover_text(hint_text)
0 commit comments