diff options
author | silverwind <me@silverwind.io> | 2023-10-09 00:16:06 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-08 22:16:06 +0000 |
commit | 5bf367f90415c178669f4c0d7a9c9b9fbbcd601d (patch) | |
tree | d8ca8def51bf1ad7471302b722a95221d4ef3cae /web_src/js/components | |
parent | 0c2a3f4cdcc18f5b00b043a50d8f947e11cf604d (diff) | |
download | gitea-5bf367f90415c178669f4c0d7a9c9b9fbbcd601d.tar.gz gitea-5bf367f90415c178669f4c0d7a9c9b9fbbcd601d.zip |
Restore warning commit status (#27504)
Partial revert of https://github.com/go-gitea/gitea/pull/25839. This
commit status is used by a number of external integrations, so I think
we should not remove it (See
https://github.com/go-gitea/gitea/pull/25839#issuecomment-1729002077).
This is a rare case where an existing migration needed to be alterted to
avoid data loss.
---------
Co-authored-by: delvh <dev.lh@web.de>
Co-authored-by: Giteabot <teabot@gitea.io>
Diffstat (limited to 'web_src/js/components')
-rw-r--r-- | web_src/js/components/DashboardRepoList.vue | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/web_src/js/components/DashboardRepoList.vue b/web_src/js/components/DashboardRepoList.vue index 5ff51168cb..f7cea32fb6 100644 --- a/web_src/js/components/DashboardRepoList.vue +++ b/web_src/js/components/DashboardRepoList.vue @@ -12,6 +12,7 @@ const commitStatus = { success: {name: 'octicon-check', color: 'green'}, error: {name: 'gitea-exclamation', color: 'red'}, failure: {name: 'octicon-x', color: 'red'}, + warning: {name: 'gitea-exclamation', color: 'yellow'}, }; const sfc = { |