aboutsummaryrefslogtreecommitdiffstats
path: root/webui/src/pages/list
diff options
context:
space:
mode:
authorMichael Muré <batolettre@gmail.com>2022-08-23 14:48:49 +0200
committerMichael Muré <batolettre@gmail.com>2022-08-23 14:48:49 +0200
commit6ed4b8b7a1185ad278eb2e40b32e859f828233d9 (patch)
treed22507f4ab418bfe5221ca409348b540b53139f8 /webui/src/pages/list
parent45b04351d8d02e53b3401b0ee23f7cbe750b63cd (diff)
downloadgit-bug-6ed4b8b7a1185ad278eb2e40b32e859f828233d9.tar.gz
webui: adapt to CombinedId
Diffstat (limited to 'webui/src/pages/list')
-rw-r--r--webui/src/pages/list/FilterToolbar.graphql1
-rw-r--r--webui/src/pages/list/ListIdentities.graphql1
-rw-r--r--webui/src/pages/list/ListLabels.graphql1
-rw-r--r--webui/src/pages/list/ListQuery.graphql1
4 files changed, 4 insertions, 0 deletions
diff --git a/webui/src/pages/list/FilterToolbar.graphql b/webui/src/pages/list/FilterToolbar.graphql
index cd103f44..2d2435cf 100644
--- a/webui/src/pages/list/FilterToolbar.graphql
+++ b/webui/src/pages/list/FilterToolbar.graphql
@@ -1,5 +1,6 @@
query BugCount($query: String) {
repository {
+ name
bugs: allBugs(query: $query) {
totalCount
}
diff --git a/webui/src/pages/list/ListIdentities.graphql b/webui/src/pages/list/ListIdentities.graphql
index 1d909496..9a92dae7 100644
--- a/webui/src/pages/list/ListIdentities.graphql
+++ b/webui/src/pages/list/ListIdentities.graphql
@@ -1,5 +1,6 @@
query ListIdentities {
repository {
+ name
allIdentities {
nodes {
id
diff --git a/webui/src/pages/list/ListLabels.graphql b/webui/src/pages/list/ListLabels.graphql
index 35f25e25..84ed38dd 100644
--- a/webui/src/pages/list/ListLabels.graphql
+++ b/webui/src/pages/list/ListLabels.graphql
@@ -1,5 +1,6 @@
query ListLabels {
repository {
+ name
validLabels {
nodes {
name
diff --git a/webui/src/pages/list/ListQuery.graphql b/webui/src/pages/list/ListQuery.graphql
index ded60c8a..922e8e09 100644
--- a/webui/src/pages/list/ListQuery.graphql
+++ b/webui/src/pages/list/ListQuery.graphql
@@ -8,6 +8,7 @@ query ListBugs(
$query: String
) {
repository {
+ name
bugs: allBugs(
first: $first
last: $last