Merge branch 'main' into feat/rag-pipeline

This commit is contained in:
twwu
2025-06-12 15:18:19 +08:00
4 changed files with 38 additions and 5 deletions

View File

@ -14,7 +14,7 @@ const MarkdownButton = ({ node }: any) => {
size={size}
className={cn('!h-auto min-h-8 select-none whitespace-normal !px-3')}
onClick={() => {
if (isValidUrl(link)) {
if (link && isValidUrl(link)) {
window.open(link, '_blank')
return
}