bugfix: some kanban tags were parsed as numbers and didn't work correctly

master
ansuz 3 years ago
parent 6261878940
commit 3fc7c4a6cd

@ -962,7 +962,7 @@ define([
var getTags = function () { var getTags = function () {
return $list.find('span.active').map(function () { return $list.find('span.active').map(function () {
return $(this).data('tag'); return String($(this).data('tag'));
}).get(); }).get();
}; };
var commitTags = function () { var commitTags = function () {

Loading…
Cancel
Save