mirror of
https://github.com/infiniflow/ragflow.git
synced 2026-07-03 01:01:56 +08:00
Fix visit dataset error (#14490)
### What problem does this PR solve? Fix visit dataset error ### Type of change - [x] Bug Fix (non-breaking change which fixes an issue)
This commit is contained in:
@@ -116,7 +116,9 @@ export const getFileLogsTableColumns = (
|
||||
<div className="bg-accent-primary-5 w-6 h-6 rounded-full flex items-center justify-center">
|
||||
<MonitorUp className="text-accent-primary" size={16} />
|
||||
</div>
|
||||
) : (
|
||||
) : dataSourceInfo[
|
||||
row.original.source_from as keyof typeof dataSourceInfo
|
||||
] ? (
|
||||
<div className="w-6 h-6 flex items-center justify-center">
|
||||
{
|
||||
dataSourceInfo[
|
||||
@@ -124,6 +126,10 @@ export const getFileLogsTableColumns = (
|
||||
].icon
|
||||
}
|
||||
</div>
|
||||
) : (
|
||||
<div className="w-6 h-6 flex items-center justify-center">
|
||||
<MonitorUp className="text-accent-primary" size={16} />
|
||||
</div>
|
||||
)}
|
||||
</div>
|
||||
),
|
||||
|
||||
Reference in New Issue
Block a user