Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Prev Previous commit
Next Next commit
Update crates/viewer/re_dataframe_ui/src/filters.rs
Co-authored-by: Lucas Meurer <[email protected]>
  • Loading branch information
abey79 and lucasmerlin authored Sep 3, 2025
commit cbc89cadf0c0df5cc36648ad27a4617b1c461d0a
2 changes: 1 addition & 1 deletion crates/viewer/re_dataframe_ui/src/filters.rs
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ impl FilterOperation {
}

Self::BooleanEquals(value) => match field.data_type() {
DataType::Boolean => Ok(col(column.clone())),
DataType::Boolean => Ok(col(column.clone()).eq(value)),

DataType::List(field) | DataType::ListView(field)
if field.data_type() == &DataType::Boolean =>
Expand Down
Loading