We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bfd8602 commit 39ca19bCopy full SHA for 39ca19b
packages/signals/signals/src/types/settings.ts
@@ -115,7 +115,7 @@ export interface SignalsPluginSettingsConfig {
115
* // add a new attribute to watch for changes
116
* (defaultAttributes) => [...defaultAttributes, 'aria-label']
117
* // remove an attribute from the list of attributes to watch for changes
118
- * (defaultRoles) => defaultRoles.filter(tag => tag.toLowerCase() !== 'aria-selected')
+ * (defaultAttributes) => defaultAttributes.filter(attr => attr.toLowerCase() !== 'aria-selected')
119
*/
120
mutationGenObservedAttributes?: (defaultAttributes: string[]) => string[]
121
}
0 commit comments