mirror of
https://github.com/immich-app/immich
synced 2025-11-07 17:27:20 +00:00
fix(web): correctly populate the camera model search dropdown (#11883)
This commit is contained in:
parent
c9f1304bce
commit
bd42e05152
1 changed files with 1 additions and 1 deletions
|
|
@ -42,7 +42,7 @@
|
||||||
includeNull: true,
|
includeNull: true,
|
||||||
});
|
});
|
||||||
|
|
||||||
const models = results.map((result) => result ?? '');
|
models = results.map((result) => result ?? '');
|
||||||
|
|
||||||
if (filters.model && !models.includes(filters.model)) {
|
if (filters.model && !models.includes(filters.model)) {
|
||||||
filters.model = undefined;
|
filters.model = undefined;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue