Skip to content

Commit 11a25db

Browse files
committed
Fix testid prop case in StatusCell
1 parent e6c3723 commit 11a25db

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

airbyte-webapp/src/components/EntityTable/components/StatusCell.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ export const StatusCell: React.FC<StatusCellProps> = ({
3131
const allowAutoDetectSchema = useFeature(FeatureItem.AllowAutoDetectSchema);
3232

3333
return (
34-
<div className={styles.container} data-testId={`statusCell-${id}`}>
34+
<div className={styles.container} data-testid={`statusCell-${id}`}>
3535
<StatusCellControl
3636
enabled={enabled}
3737
id={id}

0 commit comments

Comments
 (0)