|
|
@@ -62,18 +62,22 @@ struct ProjectPanelView: View {
|
|
|
.buttonStyle(.borderless)
|
|
|
.popover(isPresented: $showDialogue) {
|
|
|
List{
|
|
|
- Picker("Default Category", selection: $item.category) {
|
|
|
+ Label("Settings", systemImage: "gearshape")
|
|
|
+ .font(.title)
|
|
|
+ Picker("Category", selection: $item.category) {
|
|
|
Text(empty.name).tag("")
|
|
|
ForEach(allGroups) { group in
|
|
|
Text(group.name)
|
|
|
}
|
|
|
}
|
|
|
+ Label("Filters", systemImage: "magnifyingglass")
|
|
|
+ .font(.title)
|
|
|
HStack {
|
|
|
Label("", systemImage: "arrow.up.arrow.down")
|
|
|
Toggle("Move Tasks", isOn: $move)
|
|
|
}
|
|
|
HStack {
|
|
|
- Label("", systemImage: "magnifyingglass")
|
|
|
+ Label("", systemImage: "text.magnifyingglass")
|
|
|
TextField("Filter Tasks", text: $taskFilter)
|
|
|
}
|
|
|
StatusChecklist(statuses: $statuses)
|