浏览代码

Fix: stop embedding status display (#523)

tags/0.3.7
KVOJJJin 2 年前
父节点
当前提交
d143284d99
没有帐户链接到提交者的电子邮件

+ 2
- 0
web/app/components/datasets/create/embedding-process/index.module.css 查看文件

@@ -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;

+ 1
- 1
web/app/components/datasets/create/step-one/index.tsx 查看文件

@@ -74,7 +74,7 @@ const StepOne = ({
setCurrentFile(file)
}
const hideFilePreview = () => {
setCurrentNotionPage(undefined)
setCurrentFile(undefined)
}

const updateCurrentPage = (page: Page) => {

+ 1
- 1
web/app/components/datasets/documents/list.tsx 查看文件

@@ -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

+ 1
- 1
web/i18n/lang/dataset-documents.en.ts 查看文件

@@ -32,7 +32,7 @@ const translation = {
status: {
queuing: 'Queuing',
indexing: 'Indexing',
parsed: 'Parsed',
paused: 'Paused',
error: 'Error',
available: 'Available',
enabled: 'Enabled',

+ 1
- 1
web/i18n/lang/dataset-documents.zh.ts 查看文件

@@ -32,7 +32,7 @@ const translation = {
status: {
queuing: '排队中',
indexing: '索引中',
parsed: '已解析',
paused: '已暂停',
error: '错误',
available: '可用',
enabled: '已启用',

正在加载...
取消
保存