Fix Bug: Global maintainer can now edit SQL in create new query (#2204)

This commit is contained in:
RachelElysia 2021-09-23 13:07:17 -04:00 committed by GitHub
parent a859d46af9
commit 4ace3b4bc5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View file

@ -0,0 +1 @@
- Bug fix: Global maintainer can create and save a new query

View file

@ -434,7 +434,7 @@ const QueryForm = ({
});
}
if (isAnyTeamMaintainer || isGlobalMaintainer) {
if (isAnyTeamMaintainer) {
return renderRunForMaintainer({ nameText, descText, queryValue });
}