feat(ux): epic UX design improvements across agents, chat, notes, and i18n
Comprehensive UI/UX updates including agent card redesign, chat container improvements, note editor enhancements, memory echo notifications, and updated translations for all 15 locales. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
@@ -259,7 +259,7 @@ async function executeScraperAgent(
|
||||
const r = articleResults[i]
|
||||
if (r.status === 'fulfilled' && r.value) {
|
||||
const article = articlesToScrape[i]
|
||||
const dateStr = article.pubDate ? ` — ${new Date(article.pubDate).toLocaleDateString(dateLocale)}` : ''
|
||||
const dateStr = article.pubDate ? ` — ${new Date(article.pubDate).toISOString().split('T')[0]}` : ''
|
||||
scrapedParts.push(`## ${article.title}\n_Source: ${article.link}_${dateStr}\n\n${r.value.substring(0, 3000)}`)
|
||||
sourceLinks.push(article.link)
|
||||
articleCount++
|
||||
|
||||
Reference in New Issue
Block a user