mirror of
http://112.124.100.131/huang.ze/ebiz-dify-ai.git
synced 2025-12-09 19:06:51 +08:00
Fix: stop embedding status display (#523)
This commit is contained in:
@@ -30,6 +30,7 @@
|
||||
.sourceItem .info {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
z-index: 1;
|
||||
}
|
||||
.sourceItem .info .name {
|
||||
font-weight: 500;
|
||||
@@ -45,6 +46,7 @@
|
||||
font-size: 12px;
|
||||
line-height: 18px;
|
||||
color: #344054;
|
||||
z-index: 1;
|
||||
}
|
||||
.sourceItem .error {
|
||||
color: #D92D20;
|
||||
|
||||
@@ -74,7 +74,7 @@ const StepOne = ({
|
||||
setCurrentFile(file)
|
||||
}
|
||||
const hideFilePreview = () => {
|
||||
setCurrentNotionPage(undefined)
|
||||
setCurrentFile(undefined)
|
||||
}
|
||||
|
||||
const updateCurrentPage = (page: Page) => {
|
||||
|
||||
@@ -57,7 +57,7 @@ export const useIndexStatus = () => {
|
||||
return {
|
||||
queuing: { color: 'orange', text: t('datasetDocuments.list.status.queuing') }, // waiting
|
||||
indexing: { color: 'blue', text: t('datasetDocuments.list.status.indexing') }, // indexing splitting parsing cleaning
|
||||
paused: { color: 'orange', text: t('datasetDocuments.list.status.parsed') }, // paused
|
||||
paused: { color: 'orange', text: t('datasetDocuments.list.status.paused') }, // paused
|
||||
error: { color: 'red', text: t('datasetDocuments.list.status.error') }, // error
|
||||
available: { color: 'green', text: t('datasetDocuments.list.status.available') }, // completed,archived = false,enabled = true
|
||||
enabled: { color: 'green', text: t('datasetDocuments.list.status.enabled') }, // completed,archived = false,enabled = true
|
||||
|
||||
Reference in New Issue
Block a user