diff --git a/src/components/projects/project-tile.vue b/src/components/projects/project-tile.vue index 2c863a1..8f13b19 100644 --- a/src/components/projects/project-tile.vue +++ b/src/components/projects/project-tile.vue @@ -4,12 +4,15 @@ import { marked } from 'marked' import { getFormattedPeriod } from 'src/utilities/dom' import type { ProjectListingInfo } from 'src/types/projects/project' +import { getCurrentRoute } from 'src/utilities/vuetils' const props = defineProps<{ id: string info: ProjectListingInfo }>() +const currentRoute = getCurrentRoute() + const { thumbnailBackground, thumbnailBackgroundSize } = props.info const period = computed(() => (!!props.info.period ? getFormattedPeriod(props.info.period) @@ -22,8 +25,9 @@ const title = computed(() => marked.parse(props.info.title || ''))