mirror of
https://github.com/TheAnachronism/docspell.git
synced 2025-04-05 02:49:32 +00:00
parent
195b35fb52
commit
a247c4ef1c
@ -207,14 +207,14 @@ render q =
|
|||||||
"incoming:" ++ boolStr (dir == Data.Direction.Incoming)
|
"incoming:" ++ boolStr (dir == Data.Direction.Incoming)
|
||||||
|
|
||||||
ItemIdIn ids ->
|
ItemIdIn ids ->
|
||||||
"id~=" ++ String.join "," ids
|
"id~=" ++ String.join "," (List.map quoteStr ids)
|
||||||
|
|
||||||
ItemIdMatch id ->
|
ItemIdMatch id ->
|
||||||
if String.length id == 47 then
|
if String.length id == 47 then
|
||||||
"id" ++ attrMatch Eq ++ id
|
"id" ++ attrMatch Eq ++ quoteStr id
|
||||||
|
|
||||||
else
|
else
|
||||||
"id" ++ attrMatch Like ++ Util.String.appendIfAbsent "*" id
|
"id" ++ attrMatch Like ++ (quoteStr <| Util.String.appendIfAbsent "*" id)
|
||||||
|
|
||||||
ItemName m str ->
|
ItemName m str ->
|
||||||
"name" ++ attrMatch m ++ quoteStr str
|
"name" ++ attrMatch m ++ quoteStr str
|
||||||
|
Loading…
x
Reference in New Issue
Block a user