mirror of
https://github.com/cryptpad/cryptpad.git
synced 2026-09-14 11:05:41 +05:00
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
Block a user