Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
silesky committed Dec 11, 2024
1 parent bfd8602 commit 39ca19b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/signals/signals/src/types/settings.ts
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ export interface SignalsPluginSettingsConfig {
* // add a new attribute to watch for changes
* (defaultAttributes) => [...defaultAttributes, 'aria-label']
* // remove an attribute from the list of attributes to watch for changes
* (defaultRoles) => defaultRoles.filter(tag => tag.toLowerCase() !== 'aria-selected')
* (defaultAttributes) => defaultAttributes.filter(attr => attr.toLowerCase() !== 'aria-selected')
*/
mutationGenObservedAttributes?: (defaultAttributes: string[]) => string[]
}
Expand Down

0 comments on commit 39ca19b

Please sign in to comment.