Skip to content

Commit

Permalink
Fix commit status color on dashboard repolist (#25993) (#25998)
Browse files Browse the repository at this point in the history
Backport #25993 by @silverwind

Followup to #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>
  • Loading branch information
GiteaBot and silverwind committed Jul 19, 2023
1 parent 28e8c69 commit 1ba0baa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web_src/js/components/DashboardRepoList.vue
Expand Up @@ -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'},
Expand Down

0 comments on commit 1ba0baa

Please sign in to comment.