aboutsummaryrefslogtreecommitdiffstats
path: root/web_src/js/components
diff options
context:
space:
mode:
authorYarden Shoham <git@yardenshoham.com>2023-07-21 13:32:25 +0300
committerGitHub <noreply@github.com>2023-07-21 10:32:25 +0000
commitdbbae67f44364eb965f516bfc77ba25dd5242c16 (patch)
tree75e818d262e2375a2ddcb0d2365ee46e7e67cede /web_src/js/components
parentd0dbe52e76f3038777c3b50066e3636105387ca3 (diff)
downloadgitea-dbbae67f44364eb965f516bfc77ba25dd5242c16.tar.gz
gitea-dbbae67f44364eb965f516bfc77ba25dd5242c16.zip
Remove commit status running and warning from the dashboard repo list (#26036)
Also added comments so the next time the dashboard repo list won't be forgotten Follows #25839 Signed-off-by: Yarden Shoham <git@yardenshoham.com>
Diffstat (limited to 'web_src/js/components')
-rw-r--r--web_src/js/components/DashboardRepoList.vue3
1 files changed, 1 insertions, 2 deletions
diff --git a/web_src/js/components/DashboardRepoList.vue b/web_src/js/components/DashboardRepoList.vue
index c5a2de843f..d68ee45ee3 100644
--- a/web_src/js/components/DashboardRepoList.vue
+++ b/web_src/js/components/DashboardRepoList.vue
@@ -152,13 +152,12 @@ import {SvgIcon} from '../svg.js';
const {appSubUrl, assetUrlPrefix, pageData} = window.config;
+// make sure this matches templates/repo/commit_status.tmpl
const commitStatus = {
pending: {name: 'octicon-dot-fill', color: 'yellow'},
- running: {name: 'octicon-dot-fill', color: 'yellow'},
success: {name: 'octicon-check', color: 'green'},
error: {name: 'gitea-exclamation', color: 'red'},
failure: {name: 'octicon-x', color: 'red'},
- warning: {name: 'gitea-exclamation', color: 'yellow'},
};
const sfc = {