Skip to content

Commit

Permalink
fix: reference issue in external knowledge api
Browse files Browse the repository at this point in the history
  • Loading branch information
YIXIAO0 committed Oct 11, 2024
1 parent d7b8e07 commit 82785da
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/app/components/base/chat/chat/citation/popup.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ const Popup: FC<PopupProps> = ({
/>
<Tooltip
text={t('common.chat.citation.vectorHash')}
data={source.index_node_hash.substring(0, 7)}
data={source.index_node_hash?.substring(0, 7)}
icon={<BezierCurve03 className='mr-1 w-3 h-3' />}
/>
{
Expand Down

0 comments on commit 82785da

Please sign in to comment.