Skip to content

Commit

Permalink
Merge branch 'main' into APPS-3080_tablist-btns-seo
Browse files Browse the repository at this point in the history
  • Loading branch information
tinuola authored Dec 13, 2024
2 parents 2f8e742 + 32758a6 commit f31bb56
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
1 change: 1 addition & 0 deletions src/lib-components/BlockCardThreeColumn.vue
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,7 @@ const parsedDateFormat = computed(() => {
<BlockTag
:label="label.title"
:is-secondary="true"
:is-highlighted="label.isHighlighted"
/>
</div>
</template>
Expand Down
6 changes: 4 additions & 2 deletions src/stories/BlockCardThreeColumn.stories.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@ const mockDefault = {
title: 'Guest speaker'
},
{
title: '35mm'
title: '35mm',
isHighlighted: true
}
],
}
Expand All @@ -39,7 +40,8 @@ const mockSingleDigitDate = {
title: 'Guest speaker'
},
{
title: '35mm'
title: '35mm',
isHighlighted: true
}
],
}
Expand Down
1 change: 1 addition & 0 deletions src/types/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -201,6 +201,7 @@ export interface LocationItemType {
export interface EventFiltersItemType {
id: string
title: string
isHighlighted?: boolean
}

export interface SearchLinkItemType {
Expand Down

0 comments on commit f31bb56

Please sign in to comment.