Skip to content

Commit

Permalink
Merge branch 'dev' into sjmarf/info-stack-default-fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Sjmarf authored Jan 12, 2024
2 parents 5a1b2c8 + 589a374 commit 15216a1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -96,8 +96,8 @@ extension CommunityModel {
}
if let function = try? subscribeMenuFunction(callback) {
functions.append(.standard(function))
functions.append(.standard(favoriteMenuFunction(callback)))
}
functions.append(.standard(favoriteMenuFunction(callback)))
functions.append(
.standardMenuFunction(
text: "Copy Name",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -78,8 +78,8 @@ extension CommunityModel {

if let subscribeAction {
trailingActions.append(subscribeAction)
trailingActions.append(favoriteAction)
}
trailingActions.append(favoriteAction)

return SwipeConfiguration(leadingActions: [], trailingActions: trailingActions)
}
Expand Down
1 change: 1 addition & 0 deletions Mlem/Views/Tabs/Feeds/PostFeedView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,7 @@ struct PostFeedView: View {
}
.onChange(of: showReadPosts) { _ in
Task(priority: .userInitiated) {
postTracker.filter = self.filter
await postTracker.refresh(clearBeforeFetch: true)
}
}
Expand Down

0 comments on commit 15216a1

Please sign in to comment.