[ARVADOS-WORKBENCH2] updated: 1.4.1-283-ge8d27222

Git user git at public.arvados.org
Wed Feb 19 18:23:38 UTC 2020


Summary of changes:
 src/store/search-bar/search-bar-actions.ts | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

       via  e8d27222f4c0852597f168e0b84feeb0b70c3edc (commit)
      from  ecd7fabba5f2989ec577c3313dcc82c94f924eae (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.


commit e8d27222f4c0852597f168e0b84feeb0b70c3edc
Author: Lucas Di Pentima <lucas at di-pentima.com.ar>
Date:   Wed Feb 19 15:21:46 2020 -0300

    15781: Changes filter fallback on properties to use 'like' instead of 'ilike'.
    
    This is to make it consistent with how 'contains' behaves, both doing case
    insensitive matches.
    
    Arvados-DCO-1.1-Signed-off-by: Lucas Di Pentima <lucas at di-pentima.com.ar>

diff --git a/src/store/search-bar/search-bar-actions.ts b/src/store/search-bar/search-bar-actions.ts
index 54678b50..8909ceff 100644
--- a/src/store/search-bar/search-bar-actions.ts
+++ b/src/store/search-bar/search-bar-actions.ts
@@ -354,8 +354,8 @@ export const queryToFilters = (query: string, apiRevision: number) => {
         if (p.value) {
             if (apiRevision < 20200212) {
                 filter
-                    .addILike(`properties.${p.key}`, p.value, GroupContentsResourcePrefix.PROJECT)
-                    .addILike(`properties.${p.key}`, p.value, GroupContentsResourcePrefix.COLLECTION);
+                    .addLike(`properties.${p.key}`, p.value, GroupContentsResourcePrefix.PROJECT)
+                    .addLike(`properties.${p.key}`, p.value, GroupContentsResourcePrefix.COLLECTION);
             } else {
                 filter
                     .addContains(`properties.${p.key}`, p.value, GroupContentsResourcePrefix.PROJECT)

-----------------------------------------------------------------------


hooks/post-receive
-- 




More information about the arvados-commits mailing list