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

This commit is contained in:
ansuz 2022-06-02 15:01:49 +05:30
parent 6261878940
commit 3fc7c4a6cd
1 changed files with 1 additions and 1 deletions

View File

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