mirror of
https://gitcode.com/gitea/gitea.git
synced 2025-05-24 10:37:47 +08:00
Fix Delete repository message (#3260)
This commit is contained in:
@ -1683,7 +1683,10 @@ function showDeletePopup() {
|
||||
filter += "#" + $this.attr("id")
|
||||
}
|
||||
|
||||
$('.delete.modal' + filter).modal({
|
||||
var dialog = $('.delete.modal' + filter);
|
||||
dialog.find('.repo-name').text($this.data('repo-name'));
|
||||
|
||||
dialog.modal({
|
||||
closable: false,
|
||||
onApprove: function() {
|
||||
if ($this.data('type') == "form") {
|
||||
|
Reference in New Issue
Block a user