Skip to content

Commit 41f72a7

Browse files
authored
fix: icon assets color (#88739)
![CleanShot 2025-04-03 at 16 50 19@2x](https://github.com/user-attachments/assets/d2dd16b5-b87f-494a-8d20-d47dd460fa32) This was broken on dark mode. Come to think of it, we should really just disable black or white colors here
1 parent 24d6b8b commit 41f72a7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

static/app/views/insights/browser/resources/components/tables/resourceTable.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -245,7 +245,7 @@ function ResourceIcon(props: {fileExtension: string; spanOp: string}) {
245245
return <PlatformIcon platform="font" />;
246246
}
247247
if (spanOp === ResourceSpanOps.IMAGE || IMAGE_FILE_EXTENSIONS.includes(fileExtension)) {
248-
return <IconImage color="black" legacySize="20px" />;
248+
return <IconImage legacySize="20px" />;
249249
}
250250
return <PlatformIcon platform="unknown" />;
251251
}

0 commit comments

Comments
 (0)