We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 286bf86 commit 09e3fb6Copy full SHA for 09e3fb6
1 file changed
packages/module/src/components/CatalogTile/CatalogTile.tsx
@@ -120,7 +120,11 @@ export class CatalogTile extends React.Component<CatalogTileProps> {
120
<CardHeader
121
actions={{ actions: badges.length > 0 && this.renderBadges(badges) }}
122
selectableActions={
123
- onClick && { selectableActionId: id + '-input', onClickAction: (e) => this.handleClick(e), selectableActionAriaLabelledby: id }
+ onClick && {
124
+ selectableActionId: id + '-input',
125
+ onClickAction: (e) => this.handleClick(e),
126
+ selectableActionAriaLabelledby: id
127
+ }
128
}
129
>
130
{iconImg && <img className="catalog-tile-pf-icon" src={iconImg} alt={iconAlt} />}
0 commit comments