Feat:csv & docx support (#1139)

Co-authored-by: jyong <jyong@dify.ai>
This commit is contained in:
KVOJJJin
2023-09-10 15:17:22 +08:00
committed by GitHub
parent f29e82685e
commit e161c511af
13 changed files with 68 additions and 39 deletions

View File

@@ -43,7 +43,7 @@ type ISegmentCardProps = {
scene?: UsageScene
className?: string
archived?: boolean
embeddingAvailable: boolean
embeddingAvailable?: boolean
}
const SegmentCard: FC<ISegmentCardProps> = ({

View File

@@ -87,6 +87,9 @@
.csvIcon {
background-image: url(~@/assets/csv.svg);
}
.docxIcon {
background-image: url(~@/assets/docx.svg);
}
.statusItemDetail {
@apply h-8 font-medium border border-gray-200 inline-flex items-center rounded-lg pl-3 pr-4 mr-2;
}