mirror of
https://github.com/wekan/wekan.git
synced 2026-01-06 09:38:49 +01:00
Fix lint error related to this feature
This commit is contained in:
parent
5f374b2fd2
commit
ab2884cae0
1 changed files with 1 additions and 1 deletions
|
|
@ -272,7 +272,7 @@ Boards.helpers({
|
||||||
const projection = { limit: 10, sort: { createdAt: -1 } };
|
const projection = { limit: 10, sort: { createdAt: -1 } };
|
||||||
|
|
||||||
if (term) {
|
if (term) {
|
||||||
let regex = new RegExp(term, 'i');
|
const regex = new RegExp(term, 'i');
|
||||||
|
|
||||||
query = {
|
query = {
|
||||||
boardId: this._id,
|
boardId: this._id,
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue