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

Report Cards: fix title layout bug

parent ec817a95
No related branches found
No related tags found
1 merge request!35Report Cards: fix title layout bug
...@@ -26,6 +26,7 @@ ...@@ -26,6 +26,7 @@
<v-list-item-title>Accessibility</v-list-item-title> <v-list-item-title>Accessibility</v-list-item-title>
</v-list-item-content> </v-list-item-content>
</v-list-item> </v-list-item>
<v-divider />
<v-subheader>Data Protection</v-subheader> <v-subheader>Data Protection</v-subheader>
<v-list-item nuxt to="/privacy_notice"> <v-list-item nuxt to="/privacy_notice">
<v-list-item-content> <v-list-item-content>
......
...@@ -30,6 +30,7 @@ ...@@ -30,6 +30,7 @@
<v-list-item-title>Accessibility</v-list-item-title> <v-list-item-title>Accessibility</v-list-item-title>
</v-list-item-content> </v-list-item-content>
</v-list-item> </v-list-item>
<v-divider />
<v-subheader>Data Protection</v-subheader> <v-subheader>Data Protection</v-subheader>
<v-list-item nuxt to="/privacy_notice"> <v-list-item nuxt to="/privacy_notice">
<v-list-item-content> <v-list-item-content>
......
...@@ -93,13 +93,11 @@ export default { ...@@ -93,13 +93,11 @@ export default {
}, },
updateBreadcrumbsPath(newPath) { updateBreadcrumbsPath(newPath) {
const entityID = EntityNames.EubopenTarget.entityID const entityID = EntityNames.EubopenTarget.entityID
console.log('entityID: ', entityID)
const parsedPath = newPath.map((pathItem) => { const parsedPath = newPath.map((pathItem) => {
const b64State = this.getB64StateForTargetClass( const b64State = this.getB64StateForTargetClass(
pathItem.queryString, pathItem.queryString,
pathItem.name pathItem.name
) )
console.log('b64State: ', b64State)
return { return {
text: `${pathItem.name} (${pathItem.belongingsCount})`, text: `${pathItem.name} (${pathItem.belongingsCount})`,
disabled: pathItem.tentative, disabled: pathItem.tentative,
......
Subproject commit 93bc3bc56ced4381eb5c27947817ba0238fdd958 Subproject commit 37804947034ded17796faf31683fd4625f4ae1b9
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