Skip to content

Commit

Permalink
Merge pull request #734 from yaacov/un-hide-overview-chart
Browse files Browse the repository at this point in the history
Unhide the overview chart
  • Loading branch information
yaacov authored Sep 20, 2023
2 parents 5044244 + 2dbb32c commit f0b22cf
Showing 1 changed file with 3 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,6 @@ import { Flex, FlexItem } from '@patternfly/react-core';
import { ChartsCard } from './cards/ChartsCard';
import { ConditionsCard, MigrationsCard, OperatorCard, OverviewCard, SettingsCard } from './cards';

/**
* Due to QE capacity we will hide the chart in 2.5.1
*/
const HIDE_FOR_2_5_1 = true;

interface ForkliftControllerDetailsTabProps extends RouteComponentProps {
obj: V1beta1ForkliftController;
ns?: string;
Expand Down Expand Up @@ -49,11 +44,9 @@ export const ForkliftControllerDetailsTab: React.FC<ForkliftControllerDetailsTab
<SettingsCard obj={obj} />
</FlexItem>

{!HIDE_FOR_2_5_1 && (
<FlexItem>
<ChartsCard obj={obj} />
</FlexItem>
)}
<FlexItem>
<ChartsCard obj={obj} />
</FlexItem>
</Flex>
</Flex>
</div>
Expand Down

0 comments on commit f0b22cf

Please sign in to comment.