v0.7.1 #36

Merged
kingbri1 merged 59 commits from next into default 2024-06-19 21:40:26 +00:00
2 changed files with 1 additions and 8 deletions
Showing only changes of commit 4ae1966934 - Show all commits

View file

@ -17,16 +17,10 @@ struct DebridLabelView: View {
var body: some View {
Tag(
name: debridSource.abbreviation,
color: tagColor,
color: getTagColor(),
horizontalPadding: 5,
verticalPadding: 3
)
.onAppear {
tagColor = getTagColor()
}
.onChange(of: debridSource.IAValues) { _ in
tagColor = getTagColor()
}
}
func getTagColor() -> Color {

View file

@ -40,6 +40,5 @@ struct SelectedDebridFilterView<Content: View>: View {
} label: {
label
}
.id(debridManager.selectedDebridSource?.id)
}
}