|
|
@@ -31,6 +31,24 @@ struct ProjectPanelView: View {
|
|
|
}
|
|
|
.help("New Task")
|
|
|
.padding(.trailing, 10)
|
|
|
+ if move {
|
|
|
+ Label("", systemImage: "arrow.up.arrow.down")
|
|
|
+ .foregroundStyle(.red)
|
|
|
+ .font(.title2)
|
|
|
+ .help("Re-ordering mode is enabled, text fields will be unresponsive")
|
|
|
+ }
|
|
|
+ if !taskFilter.isEmpty {
|
|
|
+ Label("", systemImage: "text.magnifyingglass")
|
|
|
+ .foregroundStyle(.blue)
|
|
|
+ .font(.title2)
|
|
|
+ .help("Only showing text matching '\(taskFilter)'")
|
|
|
+ }
|
|
|
+ if !statuses.all {
|
|
|
+ Label("", systemImage: "exclamationmark.magnifyingglass")
|
|
|
+ .foregroundStyle(.blue)
|
|
|
+ .font(.title2)
|
|
|
+ .help(statuses.description)
|
|
|
+ }
|
|
|
Button {
|
|
|
showDialogue = !showDialogue
|
|
|
} label: {
|