Skip to content

Commit d2c0b62

Browse files
committed
updates to fix tests, update DataListCheck
1 parent c9215f4 commit d2c0b62

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

packages/module/src/ColumnManagementModal/ColumnManagementModal.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -129,11 +129,11 @@ const ColumnManagementModal: React.FunctionComponent<ColumnManagementModalProps>
129129
<DataListItem key={column.key}>
130130
<DataListItemRow>
131131
<DataListCheck
132-
checked={column.isShown}
132+
isChecked={column.isShown}
133133
onChange={() => handleChange(index)}
134134
isDisabled={column.isUntoggleable}
135135
aria-labelledby={`${ouiaId}-column${index}-label`}
136-
data-ouia-component-id={`${ouiaId}-column${index}-checkbox`}
136+
ouiaId={`${ouiaId}-column${index}-checkbox`}
137137
id={`${ouiaId}-column${index}-checkbox`}
138138
/>
139139
<DataListItemCells

packages/module/src/MultiContentCard/__snapshots__/MultiContentCard.test.tsx.snap

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -411,7 +411,7 @@ exports[`MultiContentCard component should render expandable multi-content card
411411
type="button"
412412
>
413413
<span
414-
class="pf-v6-c-button__icon pf-m-start"
414+
class="pf-v6-c-button__icon"
415415
>
416416
<span
417417
class="pf-v6-c-card__header-toggle-icon"
@@ -480,7 +480,7 @@ exports[`MultiContentCard component should render expandable multi-content card
480480
type="button"
481481
>
482482
<span
483-
class="pf-v6-c-button__icon pf-m-start"
483+
class="pf-v6-c-button__icon"
484484
>
485485
<span
486486
class="pf-v6-c-card__header-toggle-icon"
@@ -928,7 +928,7 @@ exports[`MultiContentCard component should render expandable multi-content card
928928
type="button"
929929
>
930930
<span
931-
class="pf-v6-c-button__icon pf-m-start"
931+
class="pf-v6-c-button__icon"
932932
>
933933
<span
934934
class="pf-v6-c-card__header-toggle-icon"

packages/module/src/TagCount/__snapshots__/TagCount.test.tsx.snap

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ exports[`TagCount component should render a disabled tag count with no value 1`]
1616
type="button"
1717
>
1818
<span
19-
class="pf-v6-c-button__icon pf-m-start"
19+
class="pf-v6-c-button__icon"
2020
>
2121
<span
2222
class="pf-v6-c-icon"
@@ -60,7 +60,7 @@ exports[`TagCount component should render a disabled tag count with no value 1`]
6060
type="button"
6161
>
6262
<span
63-
class="pf-v6-c-button__icon pf-m-start"
63+
class="pf-v6-c-button__icon"
6464
>
6565
<span
6666
class="pf-v6-c-icon"
@@ -160,7 +160,7 @@ exports[`TagCount component should render a tag count of 11 1`] = `
160160
type="button"
161161
>
162162
<span
163-
class="pf-v6-c-button__icon pf-m-start"
163+
class="pf-v6-c-button__icon"
164164
>
165165
<span
166166
class="pf-v6-c-icon"
@@ -205,7 +205,7 @@ exports[`TagCount component should render a tag count of 11 1`] = `
205205
type="button"
206206
>
207207
<span
208-
class="pf-v6-c-button__icon pf-m-start"
208+
class="pf-v6-c-button__icon"
209209
>
210210
<span
211211
class="pf-v6-c-icon"

packages/module/src/WarningModal/__snapshots__/WarningModal.test.tsx.snap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ exports[`WarningModal component should render 1`] = `
4040
type="button"
4141
>
4242
<span
43-
class="pf-v6-c-button__icon pf-m-start"
43+
class="pf-v6-c-button__icon"
4444
>
4545
<svg
4646
aria-hidden="true"

0 commit comments

Comments
 (0)