Skip to content

Commit

Permalink
fix(contextchat): open referenced sources in new tab
Browse files Browse the repository at this point in the history
Signed-off-by: Anupam Kumar <[email protected]>
  • Loading branch information
kyteinsky committed Sep 19, 2024
1 parent 8f62e55 commit 9d62b3e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/ContextChat/ContextChatOutputForm.vue
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
:append-to-body="false"
:dropdown-should-open="() => false">
<template #option="option">
<a class="select-option" :href="option.url">
<a class="select-option" :href="option.url" target="_blank">
<NcAvatar
:size="24"
:url="option.icon"
Expand All @@ -32,7 +32,7 @@
</a>
</template>
<template #selected-option="option">
<a class="select-option" :href="option.url">
<a class="select-option" :href="option.url" target="_blank">
<NcAvatar
:size="24"
:url="option.icon"
Expand Down

0 comments on commit 9d62b3e

Please sign in to comment.