]> source.dussan.org Git - gitea.git/commitdiff
Fix commit status color on dashboard repolist (#25993)
authorsilverwind <me@silverwind.io>
Wed, 19 Jul 2023 23:04:41 +0000 (01:04 +0200)
committerGitHub <noreply@github.com>
Wed, 19 Jul 2023 23:04:41 +0000 (01:04 +0200)
Followup to https://github.com/go-gitea/gitea/pull/25935 which has
missed to change the icon on the repolist because the logic is not
shared with templates.

Co-authored-by: Giteabot <teabot@gitea.io>
web_src/js/components/DashboardRepoList.vue

index 6d27cb7508b8de5160122275c2831ccb779c3256..c5a2de843f6808072121d8bd9efbf956d293d7f7 100644 (file)
@@ -153,7 +153,7 @@ import {SvgIcon} from '../svg.js';
 const {appSubUrl, assetUrlPrefix, pageData} = window.config;
 
 const commitStatus = {
-  pending: {name: 'octicon-dot-fill', color: 'grey'},
+  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'},