We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fa256db commit 6bb34faCopy full SHA for 6bb34fa
src/mixins/indexDataFetcher.js
@@ -20,17 +20,14 @@ export default {
20
},
21
22
methods: {
23
- async fetchIndexPathsData() {
24
- return fetchData(this.indexDataPath);
25
- },
26
async fetchIndexData() {
27
try {
28
IndexStore.reset();
29
const {
30
includedArchiveIdentifiers = [],
31
interfaceLanguages,
32
references = {},
33
- } = await this.fetchIndexPathsData();
+ } = await fetchData(this.indexDataPath);
34
IndexStore.setFlatChildren(flattenNavigationIndex(interfaceLanguages));
35
IndexStore.setTechnologyProps(extractTechnologyProps(interfaceLanguages));
36
IndexStore.setReferences(references);
0 commit comments