Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion src/components/records/BroadcastVideoRecord.vue
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,10 @@
{{ t(`categories.${santizeAndSimplify(recordData.genre)}`) }}
</router-link>
</div>
<h4 v-if="recordData.annotation">{{ $t('record.annotation') }}</h4>
<div v-if="recordData.annotation">
<p class="annotation-text">{{ recordData.annotation }}</p>
</div>
</div>
<div class="divider darkblue"></div>
<div class="share-button">
Expand Down Expand Up @@ -412,7 +416,10 @@ h4 {
color: #002e70;
text-decoration: none;
}

.annotation-text {
margin: 0;
text-transform: none;
}
.link-container {
background-color: #0a2e70;
width: fit-content;
Expand Down
1 change: 1 addition & 0 deletions src/locales/da.json
Original file line number Diff line number Diff line change
Expand Up @@ -315,6 +315,7 @@
"timestamp":"kl. ",
"title":"Titel",
"genre":"Genre",
"annotation": "Bemærkning",
"copy": "Del link",
"copyTitleSuccess":"Linket er nu kopieret",
"copyMessageSuccess":"",
Expand Down
1 change: 1 addition & 0 deletions src/locales/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -319,6 +319,7 @@
"timestamp": "at ",
"title":"Title",
"genre":"Genre",
"annotation": "Annotation",
"copy":"Share link",
"copyTitleSuccess":"The link has now been copied.",
"copyMessageSuccess":"",
Expand Down
1 change: 1 addition & 0 deletions src/types/BroadcastRecordType.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ export interface BroadcastRecordType {
id: string;
name: NameType[];
publication: PublicationType;
annotation: string;
encodesCreativeWork?: CreativeWork;
description: string;
startTime: string;
Expand Down