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.
2 parents ebb6c2c + 0e96793 commit 91c3089Copy full SHA for 91c3089
src/App.vue
@@ -147,7 +147,7 @@ export default {
147
y: 0,
148
},
149
createDataSet: false,
150
- sckanVersion: 'sckan-2024-09-21-npo',
+ sckanVersion: 'sckan-2024-09-21',
151
flatmapKnowledge: [],
152
connectivityKnowledge: [],
153
query: '',
@@ -164,7 +164,7 @@ export default {
164
const mappedData = response.values.map(x => x[0]);
165
const knowledge = mappedData.map(x => JSON.parse(x));
166
this.flatmapKnowledge = knowledge.filter((item) => {
167
- if (item.source === this.sckanVersion && item.connectivity?.length) return true;
+ if (item.connectivity?.length) return true;
168
return false;
169
});
170
this.connectivityKnowledge = this.flatmapKnowledge;
0 commit comments