Remove the double # in quick access pills
This commit is contained in:
parent
47436daaf2
commit
f235ebb720
|
@ -42,9 +42,16 @@ struct TimelineQuickAccessPills: View {
|
|||
Button {
|
||||
timeline = filter
|
||||
} label: {
|
||||
switch filter {
|
||||
case .hashtag:
|
||||
Label(filter.title.replacingOccurrences(of: "#", with: ""),
|
||||
systemImage: filter.iconName())
|
||||
.font(.callout)
|
||||
default:
|
||||
Label(filter.localizedTitle(), systemImage: filter.iconName())
|
||||
.font(.callout)
|
||||
}
|
||||
}
|
||||
.transition(.push(from: .leading).combined(with: .opacity))
|
||||
.onDrag {
|
||||
draggedFilter = filter
|
||||
|
|
Loading…
Reference in New Issue