File tree Expand file tree Collapse file tree 3 files changed +7
-6
lines changed
scatter/report/components Expand file tree Collapse file tree 3 files changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -12,8 +12,9 @@ import {
1212} from '@/components/ui/timeline'
1313import {
1414 ChevronRightIcon ,
15- CircleArrowDownIcon , ClipboardCheckIcon ,
16- MessageCircleIcon ,
15+ CircleArrowDownIcon ,
16+ ClipboardCheckIcon ,
17+ MessageCircleWarningIcon ,
1718 MessagesSquareIcon ,
1819} from 'lucide-react'
1920import {
@@ -39,15 +40,15 @@ export function Analysis({result}: ReportProps) {
3940 < Heading textAlign = { 'center' } fontSize = { 'xl' } mb = { 5 } > Analysis</ Heading >
4041 < HStack mb = { 5 } justify = { 'center' } >
4142 < VStack gap = { 0 } w = { '200px' } >
42- < Icon mb = { 2 } > < MessageCircleIcon size = { '30px' } /> </ Icon >
43+ < Icon mb = { 2 } > < MessageCircleWarningIcon size = { '30px' } /> </ Icon >
4344 < Text fontSize = { '3xl' } fontWeight = { 'bold' } lineHeight = { 1 } mb = { 1 } > { Object . keys ( result . comments ) . length . toLocaleString ( ) } </ Text >
4445 < Text fontSize = { 'xs' } > 意見が含まれるコメント数</ Text >
4546 </ VStack >
4647 < ChevronRightIcon />
4748 < VStack gap = { 0 } w = { '200px' } >
4849 < Icon mb = { 2 } > < MessagesSquareIcon size = { '30px' } /> </ Icon >
4950 < Text fontSize = { '3xl' } fontWeight = { 'bold' } lineHeight = { 1 } mb = { 1 } > { result . arguments . length . toLocaleString ( ) } </ Text >
50- < Text fontSize = { 'xs' } > AIが抽出した意見数 </ Text >
51+ < Text fontSize = { 'xs' } > AIが抽出した議論数 </ Text >
5152 </ VStack >
5253 < ChevronRightIcon />
5354 < VStack gap = { 0 } w = { '200px' } >
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ export function ClusterOverview({cluster}: Props) {
1111 < Box mx = { 'auto' } maxW = { '750px' } mb = { 12 } >
1212 < Box mb = { 2 } >
1313 < Heading fontSize = { '2xl' } className = { 'headingColor' } mb = { 1 } > { cluster . label } </ Heading >
14- < Text fontWeight = { 'bold' } > < Icon mr = { 1 } > < MessagesSquareIcon size = { 20 } /> </ Icon > { cluster . value } 意見 </ Text >
14+ < Text fontWeight = { 'bold' } > < Icon mr = { 1 } > < MessagesSquareIcon size = { 20 } /> </ Icon > { cluster . value . toLocaleString ( ) } 議論 </ Text >
1515 </ Box >
1616 < Text > { cluster . takeaway } </ Text >
1717 </ Box >
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ export function Overview({result}: Props) {
1111 < Box mx = { 'auto' } maxW = { '750px' } mb = { 5 } >
1212 < Heading textAlign = { 'center' } fontSize = { 'xl' } mb = { 5 } > Report</ Heading >
1313 < Heading as = { 'h2' } size = { '4xl' } mb = { 2 } className = { 'headingColor' } > { result . config . question } </ Heading >
14- < Text fontWeight = { 'bold' } fontSize = { 'xl' } mb = { 2 } > < Icon mr = { 1 } > < MessagesSquareIcon size = { 20 } /> </ Icon > { result . arguments . length } 意見 </ Text >
14+ < Text fontWeight = { 'bold' } fontSize = { 'xl' } mb = { 2 } > < Icon mr = { 1 } > < MessagesSquareIcon size = { 20 } /> </ Icon > { result . arguments . length . toLocaleString ( ) } 議論 </ Text >
1515 < p > { result . overview } </ p >
1616 </ Box >
1717 )
You can’t perform that action at this time.
0 commit comments