Skip to content

Commit

Permalink
Fix after rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
abey79 committed Jul 12, 2024
1 parent c66c84f commit 01615d7
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions crates/viewer/re_space_view_dataframe/src/space_view_class.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ use re_data_ui::item_ui::{entity_path_button, instance_path_button};
use re_entity_db::InstancePath;
use re_log_types::{EntityPath, Instance, ResolvedTimeRange, TimeInt, Timeline};
use re_space_view::view_property_ui;
use re_types::blueprint::archetypes::{PlotLegend, TableRowOrder};
use re_types::blueprint::archetypes::TableRowOrder;
use re_types::blueprint::components::{SortOrder, TableGroupBy};
use re_types_core::datatypes::TimeRange;
use re_types_core::{ComponentName, SpaceViewClassIdentifier};
Expand Down Expand Up @@ -182,7 +182,8 @@ fn entity_and_time_vs_component_ui(
.into_iter()
.flat_map(move |chunk| {
chunk
.indices(&query.timeline)
.clone()
.iter_indices(&query.timeline)
.into_iter()
.flat_map(|iter| {
iter.filter(|(time, _)| {
Expand All @@ -195,6 +196,7 @@ fn entity_and_time_vs_component_ui(
)
})
})
//TODO(ab): cmc help!?
.collect::<Vec<_>>()
.into_iter()
})
Expand Down

0 comments on commit 01615d7

Please sign in to comment.