loading up the forgejo repo on tangled to test page performance
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fix commit status color on dashboard repolist (#25993)

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>

authored by

silverwind
Giteabot
and committed by
GitHub
36010243 e20f8f09

+1 -1
+1 -1
web_src/js/components/DashboardRepoList.vue
··· 153 153 const {appSubUrl, assetUrlPrefix, pageData} = window.config; 154 154 155 155 const commitStatus = { 156 - pending: {name: 'octicon-dot-fill', color: 'grey'}, 156 + pending: {name: 'octicon-dot-fill', color: 'yellow'}, 157 157 running: {name: 'octicon-dot-fill', color: 'yellow'}, 158 158 success: {name: 'octicon-check', color: 'green'}, 159 159 error: {name: 'gitea-exclamation', color: 'red'},