Skip to content

Commit

Permalink
[ENG-993] fix node icon (spacedriveapp#1236)
Browse files Browse the repository at this point in the history
fix node icon
  • Loading branch information
niikeec committed Aug 21, 2023
1 parent 11910b9 commit 7d21366
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion interface/app/$libraryId/Explorer/FilePath/Thumb.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ export const FileThumb = memo((props: ThumbProps) => {
default:
setSrc(
getIcon(
itemData.isDir ? 'Folder' : itemData.kind,
itemData.isDir || parent?.type === 'Node' ? 'Folder' : itemData.kind,
isDark,
itemData.extension,
itemData.isDir
Expand Down

0 comments on commit 7d21366

Please sign in to comment.