Skip to content

Commit

Permalink
fix(PrimaryDetail): remove primary detail card view require statement
Browse files Browse the repository at this point in the history
  • Loading branch information
wise-king-sullyman committed Sep 22, 2023
1 parent cb50876 commit e10d0f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/react-core/src/demos/PrimaryDetail.md
Original file line number Diff line number Diff line change
Expand Up @@ -553,7 +553,7 @@ class PrimaryDetailCardView extends React.Component {
}}
selectableActions={{ isChecked: selectedItems.includes(product.id), selectableActionId: `selectable-actions-item-${product.id}`, selectableActionAriaLabelledby: `${'card-view-' + key}`, name: `check-${product.id}`, onChange: () => this.onClick(product.id) }}
>
<img src={require(icons[product.icon])} alt={`${product.name} icon`} style={{ height: '50px' }} />
<img src={icons[product.icon]} alt={`${product.name} icon`} style={{ height: '50px' }} />
</CardHeader>
<CardTitle>
<Button variant="link" isInline onClick={() => this.onCardClick(product.id)} aria-expanded={activeCard === product.id}>
Expand Down

0 comments on commit e10d0f4

Please sign in to comment.