mirror of
https://github.com/immich-app/immich
synced 2025-11-07 17:27:20 +00:00
feat: adds option to search only for untagged assets (#19730)
Co-authored-by: SkwalExe <skwal@skwal.net>
This commit is contained in:
parent
818bdde317
commit
f778adea92
14 changed files with 75 additions and 23 deletions
|
|
@ -33,6 +33,7 @@
|
|||
|
||||
interface Props {
|
||||
label: string;
|
||||
disabled?: boolean;
|
||||
hideLabel?: boolean;
|
||||
options?: ComboBoxOption[];
|
||||
selectedOption?: ComboBoxOption | undefined;
|
||||
|
|
@ -52,6 +53,7 @@
|
|||
let {
|
||||
label,
|
||||
hideLabel = false,
|
||||
disabled = false,
|
||||
options = [],
|
||||
selectedOption = $bindable(),
|
||||
placeholder = '',
|
||||
|
|
@ -275,6 +277,7 @@
|
|||
|
||||
<input
|
||||
{placeholder}
|
||||
{disabled}
|
||||
aria-activedescendant={selectedIndex || selectedIndex === 0 ? `${listboxId}-${selectedIndex}` : ''}
|
||||
aria-autocomplete="list"
|
||||
aria-controls={listboxId}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue