fix: replaced notifications Link with a tag
This commit is contained in:
@@ -30,14 +30,14 @@
|
|||||||
<div class="notification text-ink-gray-7" v-html="log.subject"></div>
|
<div class="notification text-ink-gray-7" v-html="log.subject"></div>
|
||||||
</div>
|
</div>
|
||||||
<div class="flex items-center space-x-2">
|
<div class="flex items-center space-x-2">
|
||||||
<Link
|
<a
|
||||||
v-if="log.link"
|
v-if="log.link"
|
||||||
:to="log.link"
|
:href="log.link"
|
||||||
@click="(e) => handleMarkAsRead(e, log.name)"
|
@click="(e) => handleMarkAsRead(e, log.name)"
|
||||||
class="text-ink-gray-5 font-medium text-sm hover:text-ink-gray-7"
|
class="text-ink-gray-5 font-medium text-sm hover:text-ink-gray-7"
|
||||||
>
|
>
|
||||||
{{ __('View') }}
|
{{ __('View') }}
|
||||||
</Link>
|
</a>
|
||||||
<Button
|
<Button
|
||||||
variant="ghost"
|
variant="ghost"
|
||||||
v-if="!log.read"
|
v-if="!log.read"
|
||||||
@@ -60,7 +60,6 @@ import {
|
|||||||
createListResource,
|
createListResource,
|
||||||
createResource,
|
createResource,
|
||||||
Breadcrumbs,
|
Breadcrumbs,
|
||||||
Link,
|
|
||||||
TabButtons,
|
TabButtons,
|
||||||
Button,
|
Button,
|
||||||
usePageMeta,
|
usePageMeta,
|
||||||
|
|||||||
Reference in New Issue
Block a user