Skip to content

Commit 4e0e005

Browse files
authored
fix: only override column type for event list
1 parent 29af153 commit 4e0e005

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/ResourceBrowser/ResourceList/K8sResourceListTableCellComponent.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ const K8sResourceListTableCellComponent = ({
161161
)
162162
}
163163

164-
if (columnName === 'type') {
164+
if (columnName === 'type' && isEventListing) {
165165
const iconName: IconName =
166166
(resourceData.type as string).toLowerCase() === 'normal' ? 'ic-info-filled-color' : 'ic-warning'
167167

0 commit comments

Comments
 (0)