Skip to content
Snippets Groups Projects
Commit 388d0da4 authored by David Mendez's avatar David Mendez
Browse files

Add entity ID to report cards to create link to entity correctly

parent 4335bc7d
Branches staging
No related tags found
1 merge request!106Add entity ID to report cards to create link to entity correctly
......@@ -4,6 +4,7 @@
:report-card-structure="reportCardStructure"
:item-i-d="itemID"
:store-module-name="storeModuleName"
:entity-i-d="entityID"
/>
</div>
</template>
......@@ -32,6 +33,7 @@ export default {
data() {
return {
storeModuleName: 'assayReportCard',
entityID: EntityNames.EubopenAssay.entityID,
}
},
computed: mapState({
......
......@@ -3,6 +3,7 @@
:report-card-structure="reportCardStructure"
:item-i-d="itemID"
:store-module-name="storeModuleName"
:entity-i-d="entityID"
/>
</template>
......@@ -30,6 +31,7 @@ export default {
data() {
return {
storeModuleName: 'probeReportCard',
entityID: EntityNames.EubopenCompound.entityID,
}
},
computed: mapState({
......
......@@ -3,6 +3,7 @@
:report-card-structure="reportCardStructure"
:item-i-d="itemID"
:store-module-name="storeModuleName"
:entity-i-d="entityID"
/>
</template>
......@@ -30,6 +31,7 @@ export default {
data() {
return {
storeModuleName: 'targetReportCard',
entityID: EntityNames.EubopenTarget.entityID,
}
},
computed: mapState({
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment