Skip to content

Commit

Permalink
THE-1328 Suppression de '| Theses.fr' dans les attributs des balises …
Browse files Browse the repository at this point in the history
…meta
  • Loading branch information
clementdelafontaine committed May 30, 2024
1 parent 3b1b0ad commit d05fdaf
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion components/organismes/OrganismeView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ getName(props.id).then(result => {
useHead({
meta: [
{ name: 'DC.title', content: `${name.value} | Theses.fr` },
{ name: 'DC.title', content: `${name.value}` },
{ name: 'DC.description.abstract', content: `${name.value} | Theses.fr` },
{ name: 'DC.source', content: `theses.fr` }
]
Expand Down
2 changes: 1 addition & 1 deletion components/personnes/PersonneView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ getPersonne(props.id).then(result => {
useHead({
meta: [
{ name: 'DC.title', content: `${item.value.prenom} ${item.value.nom} | Theses.fr` },
{ name: 'DC.title', content: `${item.value.prenom} ${item.value.nom}` },
{ name: 'DC.description.abstract', content: `${item.value.prenom} ${item.value.nom} | Theses.fr` },
{ name: 'DC.source', content: `theses.fr` }
]
Expand Down
4 changes: 2 additions & 2 deletions components/theses/ThesisComponent.vue
Original file line number Diff line number Diff line change
Expand Up @@ -112,8 +112,8 @@ watchEffect(() => {
meta: [
{ name: 'DC.type', content: 'thesis' },
{ name: 'citation_dissertation_name', content: 'thesis' },
{ name: 'DC.title', content: `${titleThese} | Theses.fr` },
{ name: 'citation_title', content: `${titleThese} | Theses.fr` },
{ name: 'DC.title', content: `${titleThese}` },
{ name: 'citation_title', content: `${titleThese}` },
{ name: 'DC.description.abstract', content: props.these.resumes.fr },
{ name: 'citation_abstract', content: props.these.resumes.fr },
{ name: 'DC.subject', content: listeSujetsFR },
Expand Down

0 comments on commit d05fdaf

Please sign in to comment.