diff options
author | Edip Emre Bodur <emrebdr29@gmail.com> | 2024-08-13 05:53:43 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-13 02:53:43 +0000 |
commit | a4dac596434df0af7de28d9c1f4630ba32b10515 (patch) | |
tree | 9dd29171f115aac8f4dc5bf3fe2a83fdf1e70cf1 /templates/repo/settings | |
parent | 5bcab0b702274e137ff3e40f3ffa9078605fc2a2 (diff) | |
download | gitea-a4dac596434df0af7de28d9c1f4630ba32b10515.tar.gz gitea-a4dac596434df0af7de28d9c1f4630ba32b10515.zip |
Fixes for unreachable project issues when transfer repository from organization (#31770)
When transferring repositories that have issues linked to a project
board to another organization, the issues remain associated with the
original project board. This causes the columns in the project board to
become bugged, making it difficult to move other issues in or out of the
affected columns. As a solution, I removed the issue relations since the
other organization does not have this project table.
Fix for #31538
Co-authored-by: Jason Song <i@wolfogre.com>
Diffstat (limited to 'templates/repo/settings')
-rw-r--r-- | templates/repo/settings/options.tmpl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/templates/repo/settings/options.tmpl b/templates/repo/settings/options.tmpl index f12bbbdf4a..8f71f0020f 100644 --- a/templates/repo/settings/options.tmpl +++ b/templates/repo/settings/options.tmpl @@ -957,7 +957,8 @@ <div class="ui warning message"> {{ctx.Locale.Tr "repo.settings.transfer_notices_1"}} <br> {{ctx.Locale.Tr "repo.settings.transfer_notices_2"}} <br> - {{ctx.Locale.Tr "repo.settings.transfer_notices_3"}} + {{ctx.Locale.Tr "repo.settings.transfer_notices_3"}} <br> + {{ctx.Locale.Tr "repo.settings.transfer_notices_4"}} </div> <form class="ui form" action="{{.Link}}" method="post"> {{.CsrfTokenHtml}} |