I#83 - Follow Up "is not Completed" search condition does not work

Closes https://gitlab.gnome.org/GNOME/evolution/issues/83
This commit is contained in:
Milan Crha
2018-08-24 09:24:06 +02:00
parent 101194d483
commit 208c38b396
3 changed files with 6 additions and 6 deletions

View File

@ -772,13 +772,13 @@
<option value="is completed">
<_title>is Completed</_title>
<code>
(match-all (not (= (user-tag "completed-on") "")))
(match-all (and (not (= (user-tag "follow-up") "")) (not (= (user-tag "completed-on") ""))))
</code>
</option>
<option value="is not completed">
<_title>is not Completed</_title>
<code>
(match-all (= (user-tag "completed-on") ""))
(match-all (and (not (= (user-tag "follow-up") "")) (= (user-tag "completed-on") "")))
</code>
</option>
</input>

View File

@ -857,13 +857,13 @@
<option value="is completed">
<_title>is Completed</_title>
<code>
(match-all (not (= (user-tag "completed-on") "")))
(match-all (and (not (= (user-tag "follow-up") "")) (not (= (user-tag "completed-on") ""))))
</code>
</option>
<option value="is not completed">
<_title>is not Completed</_title>
<code>
(match-all (= (user-tag "completed-on") ""))
(match-all (and (not (= (user-tag "follow-up") "")) (= (user-tag "completed-on") "")))
</code>
</option>
</input>

View File

@ -856,13 +856,13 @@
<option value="is completed">
<_title>is Completed</_title>
<code>
(match-all (not (= (user-tag "completed-on") "")))
(match-all (and (not (= (user-tag "follow-up") "")) (not (= (user-tag "completed-on") ""))))
</code>
</option>
<option value="is not completed">
<_title>is not Completed</_title>
<code>
(match-all (= (user-tag "completed-on") ""))
(match-all (and (not (= (user-tag "follow-up") "")) (= (user-tag "completed-on") "")))
</code>
</option>
</input>