BlueprintCard: Make hand cursor appear on hover

This commit fixes an issue where if both isClickable and isSelectable
are passed to a card in Patternfly 6, the hand cursor no longer appears
on hover and it is not obvious the card is clickable.

Co-Author: Gianluca Zuccarelli <gzuccare@redhat.com>
This commit is contained in:
Lucas Garfield 2025-06-19 10:44:21 -05:00 committed by Klara Simickova
parent bf952c5c7a
commit 5d6c6dc58b
5 changed files with 32 additions and 32 deletions

View file

@ -24,7 +24,7 @@ const testTile = async (tile: HTMLElement) => {
tile.focus();
await waitFor(() => user.keyboard(' '));
expect(tile).toHaveClass('pf-m-selectable');
expect(tile).toHaveClass('pf-m-clickable');
};
describe('Create Image Wizard', () => {