Skip to content

Commit d8ecf8b

Browse files
authored
Fix controller specific animations (#8444)
1 parent c96c167 commit d8ecf8b

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

src/core/core.config.js

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,12 @@ export default class Config {
173173
*/
174174
datasetScopeKeys(datasetType) {
175175
return cachedKeys(datasetType,
176-
() => [`datasets.${datasetType}`, `controllers.${datasetType}.datasets`, '']);
176+
() => [
177+
`datasets.${datasetType}`,
178+
`controllers.${datasetType}`,
179+
`controllers.${datasetType}.datasets`,
180+
''
181+
]);
177182
}
178183

179184
/**
@@ -186,6 +191,7 @@ export default class Config {
186191
return cachedKeys(`${datasetType}.animation`,
187192
() => [
188193
`datasets.${datasetType}.animation`,
194+
`controllers.${datasetType}.animation`,
189195
`controllers.${datasetType}.datasets.animation`,
190196
'animation'
191197
]);

0 commit comments

Comments
 (0)