summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--gogs.go2
-rw-r--r--public/js/gogs.js1
-rw-r--r--routers/repo/issue.go1
-rw-r--r--templates/.VERSION2
4 files changed, 4 insertions, 2 deletions
diff --git a/gogs.go b/gogs.go
index e2b32d0dfb..0bca6e580e 100644
--- a/gogs.go
+++ b/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())
diff --git a/public/js/gogs.js b/public/js/gogs.js
index 59cdf5d668..d38e8976f4 100644
--- a/public/js/gogs.js
+++ b/public/js/gogs.js
@@ -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 () {
diff --git a/routers/repo/issue.go b/routers/repo/issue.go
index cc344bd080..6912a2faf2 100644
--- a/routers/repo/issue.go
+++ b/routers/repo/issue.go
@@ -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 {
diff --git a/templates/.VERSION b/templates/.VERSION
index 2380236549..969aae1e3a 100644
--- a/templates/.VERSION
+++ b/templates/.VERSION
@@ -1 +1 @@
-0.6.13.0917 Beta \ No newline at end of file
+0.6.13.0918 Beta \ No newline at end of file