Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[ML] AIOps Log Rate Analysis: adds controls for controlling which columns will be visible #184262

Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
ensure row stays expanded
alvarezmelissa87 committed May 24, 2024
commit fb4ce798b9daa515c508033301df308529ab683b
Original file line number Diff line number Diff line change
@@ -366,9 +366,8 @@ export const LogRateAnalysisResultsGroupsTable: FC<LogRateAnalysisResultsTablePr
for (const itemId in itemIdToExpandedRowMapValues) {
if (itemIdToExpandedRowMapValues.hasOwnProperty(itemId)) {
const component = itemIdToExpandedRowMapValues[itemId];
const Component = itemIdToExpandedRowMapValues[itemId].type.name;
itemIdToExpandedRowMapValues[itemId] = (
<Component {...component.props} skippedColumns={skippedColumns} />
<LogRateAnalysisResultsTable {...component.props} skippedColumns={skippedColumns} />
);
}
}