mirror of
				https://gitee.com/gitea/gitea
				synced 2025-11-04 16:40:24 +08:00 
			
		
		
		
	#1659 fix change label title resets color
This commit is contained in:
		
							
								
								
									
										2
									
								
								gogs.go
									
									
									
									
									
								
							
							
						
						
									
										2
									
								
								gogs.go
									
									
									
									
									
								
							@@ -17,7 +17,7 @@ import (
 | 
			
		||||
	"github.com/gogits/gogs/modules/setting"
 | 
			
		||||
)
 | 
			
		||||
 | 
			
		||||
const APP_VER = "0.6.13.0917 Beta"
 | 
			
		||||
const APP_VER = "0.6.13.0918 Beta"
 | 
			
		||||
 | 
			
		||||
func init() {
 | 
			
		||||
	runtime.GOMAXPROCS(runtime.NumCPU())
 | 
			
		||||
 
 | 
			
		||||
@@ -238,6 +238,7 @@ function initRepository() {
 | 
			
		||||
        $('.edit-label-button').click(function () {
 | 
			
		||||
            $('#label-modal-id').val($(this).data('id'));
 | 
			
		||||
            $('.edit-label .new-label-input').val($(this).data('title'));
 | 
			
		||||
            $('.edit-label .color-picker').val($(this).data('color'));
 | 
			
		||||
            $('.minicolors-swatch-color').css("background-color", $(this).data('color'));
 | 
			
		||||
            $('.edit-label.modal').modal({
 | 
			
		||||
                onApprove: function () {
 | 
			
		||||
 
 | 
			
		||||
@@ -904,6 +904,7 @@ func UpdateLabel(ctx *middleware.Context, form auth.CreateLabelForm) {
 | 
			
		||||
		return
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	fmt.Println(form.Title, form.Color)
 | 
			
		||||
	l.Name = form.Title
 | 
			
		||||
	l.Color = form.Color
 | 
			
		||||
	if err := models.UpdateLabel(l); err != nil {
 | 
			
		||||
 
 | 
			
		||||
@@ -1 +1 @@
 | 
			
		||||
0.6.13.0917 Beta
 | 
			
		||||
0.6.13.0918 Beta
 | 
			
		||||
		Reference in New Issue
	
	Block a user