Adding fixes to board, simplifications
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
import type { ComponentType } from 'react'
|
||||
import { BadgeCheck, BookOpen, Building2, CalendarClock, FileText, Image as ImageIcon, Pencil, UserRound } from 'lucide-react'
|
||||
import { BookOpen, Building2, CalendarClock, FileText, Image as ImageIcon, Pencil, UserRound } from 'lucide-react'
|
||||
import type { CaseDocument, Connection, DocumentCaptureKind, DocumentExhibit, Evidence, Exhibit, ExhibitRelation, ExhibitType, PartyExhibit, SourceFileType, TemporalFact } from './types'
|
||||
|
||||
export type WidgetCommand =
|
||||
@@ -74,9 +74,7 @@ function PartyWidget({ exhibit, context }: ExhibitWidgetProps) {
|
||||
|
||||
function ClaimWidget({ exhibit }: ExhibitWidgetProps) {
|
||||
if (exhibit.type !== 'claim') return null
|
||||
return <div className="card-content claim-content"><div className="claim-heading"><BadgeCheck size={18}/><span>PROPOSITION TO PROVE</span></div>
|
||||
<blockquote>{exhibit.statement}</blockquote><small>CONNECT SOURCE EVIDENCE WITH RED THREAD</small>
|
||||
</div>
|
||||
return <div className="card-content claim-content"><blockquote>{exhibit.statement}</blockquote></div>
|
||||
}
|
||||
|
||||
function DocumentWidget({ exhibit }: ExhibitWidgetProps) {
|
||||
|
||||
Reference in New Issue
Block a user