mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-08-28 22:47:20 +02:00
CLI2: Fixed bug in UUID filtering
- When filtering by UUID, the expression listed the 'uuid' attribute as a type Lexer::Type::string, which should have been Lexer::Type::dom.
This commit is contained in:
parent
4b68fea674
commit
1cf07cd6fb
1 changed files with 1 additions and 1 deletions
|
@ -1296,7 +1296,7 @@ void CLI2::insertIDExpr ()
|
|||
A2 argID ("id", Lexer::Type::dom);
|
||||
argID.tag ("FILTER");
|
||||
|
||||
A2 argUUID ("uuid", Lexer::Type::uuid);
|
||||
A2 argUUID ("uuid", Lexer::Type::dom);
|
||||
argUUID.tag ("FILTER");
|
||||
|
||||
reconstructed.push_back (openParen);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue