mirror of
https://github.com/fleetdm/fleet
synced 2026-05-24 01:18:42 +00:00
Fleet UI: Default to All in dropdown instead of Select place holder (#29015)
This commit is contained in:
parent
7b1187de0f
commit
025678a869
1 changed files with 1 additions and 1 deletions
|
|
@ -291,7 +291,7 @@ const SoftwareSelfService = ({
|
|||
...category,
|
||||
value: String(category.id), // DropdownWrapper only accepts string
|
||||
}))}
|
||||
value={String(queryParams.category_id) || ""}
|
||||
value={String(queryParams.category_id || 0)}
|
||||
onChange={onCategoriesDropdownChange}
|
||||
name="categories-dropdown"
|
||||
className={`${baseClass}__categories-dropdown`}
|
||||
|
|
|
|||
Loading…
Reference in a new issue