mirror of
https://github.com/infiniflow/ragflow.git
synced 2025-12-18 03:26:42 +08:00
### What problem does this PR solve? feat: translate graph list #918 ### Type of change - [x] New Feature (non-breaking change which adds functionality)
This commit is contained in:
@ -4,6 +4,7 @@ import CreateFlowModal from './create-flow-modal';
|
||||
import FlowCard from './flow-card';
|
||||
import { useFetchDataOnMount, useSaveFlow } from './hooks';
|
||||
|
||||
import { useTranslate } from '@/hooks/commonHooks';
|
||||
import styles from './index.less';
|
||||
|
||||
const FlowList = () => {
|
||||
@ -14,6 +15,7 @@ const FlowList = () => {
|
||||
flowSettingLoading,
|
||||
onFlowOk,
|
||||
} = useSaveFlow();
|
||||
const { t } = useTranslate('flow');
|
||||
|
||||
const { list, loading } = useFetchDataOnMount();
|
||||
|
||||
@ -25,7 +27,7 @@ const FlowList = () => {
|
||||
icon={<PlusOutlined />}
|
||||
onClick={showFlowSettingModal}
|
||||
>
|
||||
create canvas
|
||||
{t('create')}
|
||||
</Button>
|
||||
</Flex>
|
||||
<Spin spinning={loading}>
|
||||
|
||||
Reference in New Issue
Block a user