mirror of https://github.com/xwiki-labs/cryptpad
bugfix: some kanban tags were parsed as numbers and didn't work correctly
This commit is contained in:
parent
6261878940
commit
3fc7c4a6cd
|
@ -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 () {
|
||||
|
|
Loading…
Reference in New Issue