mirror of
https://github.com/wekan/wekan.git
synced 2025-04-22 04:57:07 -04:00
fixing string detection in advanced filter
This commit is contained in:
parent
0bdc7efc8b
commit
422424d21c
1 changed files with 1 additions and 2 deletions
|
@ -119,7 +119,7 @@ class AdvancedFilter {
|
|||
}
|
||||
if (char === '\'')
|
||||
{
|
||||
string = true;
|
||||
string = !string;
|
||||
continue;
|
||||
}
|
||||
if (char === '\\')
|
||||
|
@ -130,7 +130,6 @@ class AdvancedFilter {
|
|||
if (char === ' ' && !string)
|
||||
{
|
||||
commands.push({'cmd':current, string});
|
||||
string = false;
|
||||
current = '';
|
||||
continue;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue