Skip to content
Snippets Groups Projects
Commit 5ba88d21 authored by Sirieam Marie Hunke's avatar Sirieam Marie Hunke
Browse files

Fix: Included missing code & fixed Bootstrap warning

parent b14a7c0c
No related branches found
No related tags found
2 merge requests!186Chore: 1.23.3,!183Fix: Included missing code & fixed Bootstrap warning
......@@ -10,7 +10,6 @@
<div class="list">
<b-card-group id="card-deck" deck>
<CoscineCard
v-if="!isLoadingRoles"
id="addResource"
:title="$t('page.project.addResource')"
type="create"
......
......@@ -112,6 +112,7 @@ import type Vue from "vue";
// import the store for current module
import useResourceStore from "../store";
import useProjectStore from "@/modules/project/store";
// import the main store
import useMainStore from "@/store/index";
......@@ -149,8 +150,9 @@ export default defineComponent({
setup() {
const mainStore = useMainStore();
const resourceStore = useResourceStore();
const projectStore = useProjectStore();
return { mainStore, resourceStore };
return { mainStore, resourceStore, projectStore };
},
data() {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment