fix "too many items" problem in the tags pivot table

This commit is contained in:
Jeff Bryner 2017-08-25 15:41:17 -07:00
Родитель 77936b10cd
Коммит 18d8f6edb0
1 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -46,7 +46,8 @@ if (Meteor.isClient) {
tableData,
{
cols: ["phase"],
rows: ["tags"]
rows: ["tags"],
menuLimit: 500,
}
);
}