Skip to content

Commit

Permalink
Fix collapsible prop values
Browse files Browse the repository at this point in the history
  • Loading branch information
jennypavlova committed Feb 1, 2024
1 parent 6d49137 commit 9dca91a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ export const AlertsSummaryContent = ({
<>
<CollapsibleSection
title={AlertsSectionTitle}
collapsible={true}
collapsible
data-test-subj="infraAssetDetailsAlertsCollapsible"
id="alerts"
extraAction={
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ export const MetricsSection = ({ assetName, metricsDataView, logsDataView, dateR

return (
<EuiFlexGroup direction="column" gutterSize="s">
<Section title={MetricsSectionTitle} collapsible={true}>
<Section title={MetricsSectionTitle} collapsible>
<MetricsGrid
assetName={assetName}
dateRange={dateRange}
Expand Down Expand Up @@ -92,7 +92,7 @@ export const MetricsSectionCompact = ({
);

return (
<Section title={MetricsSectionTitle} collapsible={true}>
<Section title={MetricsSectionTitle} collapsible>
<MetricsGrid
assetName={assetName}
dateRange={dateRange}
Expand Down

0 comments on commit 9dca91a

Please sign in to comment.