Skip to content

Commit 9e0b08e

Browse files
committed
2 parents 9485878 + 5609a5f commit 9e0b08e

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/components/LicenseCode.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,14 @@
1717
<span v-if="!workTitle">{{ $t('license-use.richtext.workTitle') }}</span>
1818
<span
1919
v-else
20-
rel="dc:title"
20+
rel="dct:title"
2121
>
2222
{{ workTitle }}
2323
</span>
2424
</a>
2525
<span
2626
v-else-if="workTitle"
27-
rel="dc:title"
27+
rel="dct:title"
2828
>
2929
{{ workTitle }}
3030
</span>

src/utils/license-utilities.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ function generateHTML(attributionDetails, shortLicenseName) {
144144
}
145145
}
146146
if (attributionDetails.workTitle) {
147-
const workTitleSpan = `<span rel="dc:title">${attributionDetails.workTitle}</span>`
147+
const workTitleSpan = `<span rel="dct:title">${attributionDetails.workTitle}</span>`
148148
if (attributionDetails.workUrl) {
149149
dataForHtmlGeneration.workTitle = `<a rel="cc:attributionURL" href="${attributionDetails.workUrl}">${workTitleSpan}</a>`
150150
} else {

0 commit comments

Comments
 (0)