1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-12-21 09:38:01 +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
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

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 {