Skip to content

Commit

Permalink
[Sonos] enable filtering in the group list (raycast#10647)
Browse files Browse the repository at this point in the history
  • Loading branch information
AntonNiklasson authored Feb 8, 2024
1 parent 603a54a commit 90a545d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions extensions/sonos/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# Sonos Changelog

## [Feature] - 2024-02-08

- Enable filtering in the list of availble groups

## [Initial Version] - 2024-02-06
6 changes: 3 additions & 3 deletions extensions/sonos/src/set-group.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ export default function SetActiveGroupCommand() {
}

return (
<List filtering={false} navigationTitle="Which group would you like to control?">
{availableGroups === undefined
<List navigationTitle="Which group would you like to control?">
{!availableGroups
? null
: Array.from(availableGroups).map((group) => (
: availableGroups.map((group) => (
<List.Item
key={group}
title={group}
Expand Down

0 comments on commit 90a545d

Please sign in to comment.