]> source.dussan.org Git - gitea.git/commitdiff
Fix commit status color on dashboard repolist (#25993) (#25998)
authorGiteabot <teabot@gitea.io>
Wed, 19 Jul 2023 23:24:04 +0000 (19:24 -0400)
committerGitHub <noreply@github.com>
Wed, 19 Jul 2023 23:24:04 +0000 (23:24 +0000)
Backport #25993 by @silverwind

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: silverwind <me@silverwind.io>
web_src/js/components/DashboardRepoList.vue

index b47d872927e77bdfd4cb1cba10c180a1488fb4ba..1430b5ff16670b11185744d23161fd1f3bbf299a 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'},