Skip to content
This repository has been archived by the owner on Jan 23, 2023. It is now read-only.

Commit

Permalink
Pass store instead of axios to DirectService
Browse files Browse the repository at this point in the history
  • Loading branch information
Richard Collier committed Sep 29, 2022
1 parent 57ae80e commit 3a8506f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/views/Concept.vue
Original file line number Diff line number Diff line change
Expand Up @@ -188,8 +188,8 @@ const showMappings = computed(() => (isConcept(types.value) || isOfTypes(types.v
const entityService = new EntityService(axios);
const configService = new ConfigService(axios);
const directService = new DirectService(axios);
const queryService = new QueryService(axios);
const directService = new DirectService(store);
let loading = ref(true);
let tabMap = reactive(new Map<string, number>());
Expand Down

0 comments on commit 3a8506f

Please sign in to comment.