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 c96c167 commit d8ecf8bCopy full SHA for d8ecf8b
src/core/core.config.js
@@ -173,7 +173,12 @@ export default class Config {
173
*/
174
datasetScopeKeys(datasetType) {
175
return cachedKeys(datasetType,
176
- () => [`datasets.${datasetType}`, `controllers.${datasetType}.datasets`, '']);
+ () => [
177
+ `datasets.${datasetType}`,
178
+ `controllers.${datasetType}`,
179
+ `controllers.${datasetType}.datasets`,
180
+ ''
181
+ ]);
182
}
183
184
/**
@@ -186,6 +191,7 @@ export default class Config {
186
191
return cachedKeys(`${datasetType}.animation`,
187
192
() => [
188
193
`datasets.${datasetType}.animation`,
194
+ `controllers.${datasetType}.animation`,
189
195
`controllers.${datasetType}.datasets.animation`,
190
196
'animation'
197
]);
0 commit comments