Skip to content

Commit

Permalink
fix(web): show camera make in search options after searching (immich-…
Browse files Browse the repository at this point in the history
  • Loading branch information
michelheusschen authored and Yuvi-raj-P committed Aug 19, 2024
1 parent abbb90a commit 7e70543
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,12 @@
model,
includeNull: true,
});
makes = results.map((result) => result ?? '');
if (filters.make && !makes.includes(filters.make)) {
filters.make = undefined;
}
makes = results.map((result) => result ?? '');
}
async function updateModels(make?: string) {
Expand Down

0 comments on commit 7e70543

Please sign in to comment.