Skip to content

Commit

Permalink
Merge pull request #1150 from research-software-directory/fix-global-…
Browse files Browse the repository at this point in the history
…search

Global search fix
  • Loading branch information
ewan-escience authored Mar 25, 2024
2 parents 0015079 + da5a4cc commit 17e80dd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion database/100-create-api-views.sql
Original file line number Diff line number Diff line change
Expand Up @@ -923,7 +923,7 @@ $$
-- ONLY TOP LEVEL ORGANISATIONS
organisation.parent IS NULL
AND
organisation.slug ILIKE CONCAT('%', query, '%') OR organisation."name" ILIKE CONCAT('%', query, '%')
(organisation.slug ILIKE CONCAT('%', query, '%') OR organisation."name" ILIKE CONCAT('%', query, '%'))
;
$$;

Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ version: "3.0"
services:
database:
build: ./database
image: rsd/database:2.2.1
image: rsd/database:2.2.2
ports:
# enable connection from outside (development mode)
- "5432:5432"
Expand Down

0 comments on commit 17e80dd

Please sign in to comment.