Skip to content

Commit

Permalink
hotfix: fix displaying deleted groups (#17)
Browse files Browse the repository at this point in the history
Co-authored-by: Jan <j.dolkowski@soldevelo.com>
  • Loading branch information
jdolkowski and Jan authored Oct 5, 2023
1 parent 7a947c4 commit 17d24b1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pickers/TaskGroupPicker.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ function TaskGroupPicker(props) {
const { isLoading, data, error } = useGraphqlQuery(
`
query TaskGroupPicker ($search: String) {
taskGroup(search: $search, first: 20) {
taskGroup(search: $search, first: 20, isDeleted: false) {
edges {
node {
id
Expand Down

0 comments on commit 17d24b1

Please sign in to comment.