From de7f99d33946fafd8d8b7c5ef64211d0e7924010 Mon Sep 17 00:00:00 2001 From: Giteabot Date: Wed, 19 Jul 2023 19:24:04 -0400 Subject: [PATCH] Fix commit status color on dashboard repolist (#25993) (#25998) 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 (cherry picked from commit 1ba0baa0300cd60bdf686648ccf74de854215acf) --- web_src/js/components/DashboardRepoList.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web_src/js/components/DashboardRepoList.vue b/web_src/js/components/DashboardRepoList.vue index b47d872927..1430b5ff16 100644 --- a/web_src/js/components/DashboardRepoList.vue +++ b/web_src/js/components/DashboardRepoList.vue @@ -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'},