Skip to content

Commit 4d79b1f

Browse files
committed
fix(#4340): clickable instance id in JournalTable
1 parent 9bcc7fc commit 4d79b1f

1 file changed

Lines changed: 8 additions & 1 deletion

File tree

spring-boot-admin-server-ui/src/main/frontend/views/journal/JournalTable.vue

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,14 @@
9595
class="w-48"
9696
>
9797
<template #body="{ data }">
98-
{{ data.instance }}
98+
<router-link
99+
:to="{
100+
name: 'instances/details',
101+
params: { instanceId: data.instance },
102+
}"
103+
>
104+
{{ data.instance }}
105+
</router-link>
99106
</template>
100107
<template #filter="{ filterModel }">
101108
<MultiSelect

0 commit comments

Comments
 (0)