mirror of
https://github.com/yattee/yattee.git
synced 2024-11-10 00:08:21 +00:00
Fix possible crash
This commit is contained in:
parent
3be7a5a69f
commit
2dd1d2ac56
@ -35,7 +35,9 @@ struct Sidebar: View {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
.onChange(of: navigation.sidebarSectionChanged) { _ in
|
.onChange(of: navigation.sidebarSectionChanged) { _ in
|
||||||
scrollScrollViewToItem(scrollView: scrollView, for: navigation.tabSelection)
|
if let tabSelection = navigation.tabSelection {
|
||||||
|
scrollScrollViewToItem(scrollView: scrollView, for: navigation.tabSelection)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
.listStyle(.sidebar)
|
.listStyle(.sidebar)
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user