about summary refs log tree commit diff
path: root/src/commit_pr.graphql
diff options
context:
space:
mode:
Diffstat (limited to 'src/commit_pr.graphql')
-rw-r--r--src/commit_pr.graphql20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/commit_pr.graphql b/src/commit_pr.graphql
index 539f28f..b2b1571 100644
--- a/src/commit_pr.graphql
+++ b/src/commit_pr.graphql
@@ -44,16 +44,16 @@ query CommitPRQuery($owner: String!, $repo: String!, $oid: GitObjectID) {
     object(oid: $oid) {
       __typename
       ... on Commit {
-	associatedPullRequests(first: 1) {
-	  nodes {
-	    baseRepository {
-	      owner {
-		__typename
-		login
-	      }
-	    }
-	  }
-	}
+        associatedPullRequests(first: 1) {
+          nodes {
+            baseRepository {
+              owner {
+                __typename
+                login
+              }
+            }
+          }
+        }
       }
     }
   }