Skip to content

Commit

Permalink
Fix the table view
Browse files Browse the repository at this point in the history
  • Loading branch information
jleibs committed Sep 18, 2024
1 parent b566a13 commit 3faa9ac
Showing 1 changed file with 7 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -242,11 +242,13 @@ impl DisplayColumn {
time_data,
})
}
ColumnDescriptor::Component(desc) => Ok(Self::Component {
entity_path: desc.entity_path.clone(),
component_name: desc.component_name,
component_data: ComponentData::try_new(desc, column_data)?,
}),
ColumnDescriptor::Component(desc) | ColumnDescriptor::DictionaryEncoded(desc) => {
Ok(Self::Component {
entity_path: desc.entity_path.clone(),
component_name: desc.component_name,
component_data: ComponentData::try_new(desc, column_data)?,
})
}
}
}

Expand Down

0 comments on commit 3faa9ac

Please sign in to comment.