mirror of
https://github.com/immich-app/immich
synced 2025-11-07 17:27:20 +00:00
fix(web): Default to context search on web (#16485)
Default to context search on web
This commit is contained in:
parent
fd5e931617
commit
366f23774a
1 changed files with 1 additions and 1 deletions
|
|
@ -57,7 +57,7 @@
|
||||||
|
|
||||||
let filter: SearchFilter = $state({
|
let filter: SearchFilter = $state({
|
||||||
query: 'query' in searchQuery ? searchQuery.query : searchQuery.originalFileName || '',
|
query: 'query' in searchQuery ? searchQuery.query : searchQuery.originalFileName || '',
|
||||||
queryType: 'query' in searchQuery ? 'smart' : 'metadata',
|
queryType: 'smart',
|
||||||
personIds: new SvelteSet('personIds' in searchQuery ? searchQuery.personIds : []),
|
personIds: new SvelteSet('personIds' in searchQuery ? searchQuery.personIds : []),
|
||||||
tagIds: new SvelteSet('tagIds' in searchQuery ? searchQuery.tagIds : []),
|
tagIds: new SvelteSet('tagIds' in searchQuery ? searchQuery.tagIds : []),
|
||||||
location: {
|
location: {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue