Skip to content

Commit 9d62b3e

Browse files
committed
fix(contextchat): open referenced sources in new tab
Signed-off-by: Anupam Kumar <kyteinsky@gmail.com>
1 parent 8f62e55 commit 9d62b3e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/components/ContextChat/ContextChatOutputForm.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
:append-to-body="false"
2222
:dropdown-should-open="() => false">
2323
<template #option="option">
24-
<a class="select-option" :href="option.url">
24+
<a class="select-option" :href="option.url" target="_blank">
2525
<NcAvatar
2626
:size="24"
2727
:url="option.icon"
@@ -32,7 +32,7 @@
3232
</a>
3333
</template>
3434
<template #selected-option="option">
35-
<a class="select-option" :href="option.url">
35+
<a class="select-option" :href="option.url" target="_blank">
3636
<NcAvatar
3737
:size="24"
3838
:url="option.icon"

0 commit comments

Comments
 (0)