Skip to content

Commit e54e956

Browse files
committed
fix(headless-cms): hide validation error icon in content entries
Hide the error icon that was previously displayed in the content entries validation indicators by setting display to none instead of applying error icon styles.
1 parent 239cbf3 commit e54e956

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/app-headless-cms/src/admin/views/contentEntries/ValidationIndicators.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ const validationStyles = css`
5050
left: var(--spacing-sm-extra);
5151
5252
.webiny_label-text::before {
53-
${errorIconStyles}
53+
display: none;
5454
}
5555
}
5656

0 commit comments

Comments
 (0)