Remove unusable link, don't open in blank

This commit is contained in:
Christian Cueni 2023-08-16 15:31:14 +02:00
parent 81734f76ae
commit c622db7e22
2 changed files with 2 additions and 2 deletions

View File

@ -10,7 +10,7 @@ const props = defineProps<{
<template> <template>
<div class="flex items-center justify-between py-4"> <div class="flex items-center justify-between py-4">
<div class="space-y-1"> <div class="space-y-1">
<a class="text-bold underline" :href="props.dueDate.url" target="_blank"> <a class="text-bold underline" :href="props.dueDate.url">
{{ props.dueDate.title }} {{ props.dueDate.title }}
</a> </a>
<p class="text-small text-gray-900"> <p class="text-small text-gray-900">

View File

@ -10,7 +10,7 @@
</li> </li>
</ul> </ul>
<div v-if="allDueDates.length > props.maxCount" class="flex items-center pt-6"> <div v-if="allDueDates.length > props.maxCount" class="flex items-center pt-6">
<a href="">{{ $t("dueDates.showAllDueDates") }}</a> <!--a href="">{{ $t("dueDates.showAllDueDates") }}</a-->
<it-icon-arrow-right /> <it-icon-arrow-right />
</div> </div>