aboutsummaryrefslogtreecommitdiff
path: root/src-vue
diff options
context:
space:
mode:
authorGeckoEidechse <40122905+GeckoEidechse@users.noreply.github.com>2024-07-30 17:05:43 +0200
committerGitHub <noreply@github.com>2024-07-30 17:05:43 +0200
commited1488f5e96a07da61f60ff8af931be5af62b48a (patch)
tree781dab13544f701e446e0032cefbb539cbf7b8a3 /src-vue
parentbaffc20eb6a3439a9475fc088e731d46b561072c (diff)
downloadFlightCore-ed1488f5e96a07da61f60ff8af931be5af62b48a.tar.gz
FlightCore-ed1488f5e96a07da61f60ff8af931be5af62b48a.zip
feat: Show pull request labels in PR view (#985)
to more easily see which PRs need testing etc
Diffstat (limited to 'src-vue')
-rw-r--r--src-vue/src/components/PullRequestsSelector.vue2
1 files changed, 2 insertions, 0 deletions
diff --git a/src-vue/src/components/PullRequestsSelector.vue b/src-vue/src/components/PullRequestsSelector.vue
index fe103edc..bd17ed14 100644
--- a/src-vue/src/components/PullRequestsSelector.vue
+++ b/src-vue/src/components/PullRequestsSelector.vue
@@ -28,6 +28,7 @@
<a target="_blank" :href="pull_request.html_url">
{{ pull_request.number }}: {{ pull_request.title }}
</a>
+ <el-tag v-for="label in pull_request.labels">{{ label }}</el-tag>
</el-card>
<div v-else class="no_matching_pr">
No matching PR found.
@@ -67,6 +68,7 @@
<a target="_blank" :href="pull_request.html_url">
{{ pull_request.number }}: {{ pull_request.title }}
</a>
+ <el-tag v-for="label in pull_request.labels">{{ label }}</el-tag>
</el-card>
<div v-else class="no_matching_pr">
No matching PR found.