1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-10-31 00:07:48 +02:00

Mobile: Resolves #11202: Use a FontAwesome icon for the trash folder (#11357)

This commit is contained in:
Henry Heino
2024-11-09 04:46:47 -08:00
committed by GitHub
parent 4d5b1ce5fd
commit 5aa29d38ef

View File

@@ -411,7 +411,7 @@ const SideMenuContentComponent = (props: Props) => {
const renderFolderIcon = (folderId: string, folderIcon: FolderIcon) => {
if (!folderIcon) {
if (folderId === getTrashFolderId()) {
folderIcon = getTrashFolderIcon(FolderIconType.Emoji);
folderIcon = getTrashFolderIcon(FolderIconType.FontAwesome);
} else if (alwaysShowFolderIcons) {
return <IonIcon name="folder-outline" style={styles_.folderBaseIcon} />;
} else {