From eefed2d30273a231634bc0b9eb5d9b7f6db878ab Mon Sep 17 00:00:00 2001 From: Sjmarf <78750526+Sjmarf@users.noreply.github.com> Date: Tue, 3 Oct 2023 21:10:17 +0100 Subject: [PATCH] Description -> Label --- Mlem/Views/Tabs/Feeds/Feed View Logic.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Mlem/Views/Tabs/Feeds/Feed View Logic.swift b/Mlem/Views/Tabs/Feeds/Feed View Logic.swift index e030f30ae..1bdbf914a 100644 --- a/Mlem/Views/Tabs/Feeds/Feed View Logic.swift +++ b/Mlem/Views/Tabs/Feeds/Feed View Logic.swift @@ -92,7 +92,7 @@ extension FeedView { let isSelected = postSortType == type let imageName = isSelected ? type.iconNameFill : type.iconName return MenuFunction.standardMenuFunction( - text: type.description, + text: type.label, imageName: imageName, destructiveActionPrompt: nil, enabled: !isSelected @@ -106,7 +106,7 @@ extension FeedView { PostSortType.availableTopTypes.map { type in let isSelected = postSortType == type return MenuFunction.standardMenuFunction( - text: type.description, + text: type.label, imageName: isSelected ? Icons.timeSortFill : Icons.timeSort, destructiveActionPrompt: nil, enabled: !isSelected