mirror of https://github.com/FlowiseAI/Flowise.git
- fixed new files that should be .jsx
parent
f0959fe3bf
commit
c07c86e71b
|
|
@ -19,19 +19,19 @@ import {
|
|||
Typography
|
||||
} from '@mui/material'
|
||||
|
||||
import { CheckboxInput } from 'ui-component/checkbox/Checkbox'
|
||||
import { BackdropLoader } from 'ui-component/loading/BackdropLoader'
|
||||
import { TableViewOnly } from 'ui-component/table/Table'
|
||||
import { CheckboxInput } from '@/ui-component/checkbox/Checkbox'
|
||||
import { BackdropLoader } from '@/ui-component/loading/BackdropLoader'
|
||||
import { TableViewOnly } from '@/ui-component/table/Table'
|
||||
|
||||
import { IconX } from '@tabler/icons'
|
||||
import ExpandMoreIcon from '@mui/icons-material/ExpandMore'
|
||||
import pythonSVG from 'assets/images/python.svg'
|
||||
import javascriptSVG from 'assets/images/javascript.svg'
|
||||
import cURLSVG from 'assets/images/cURL.svg'
|
||||
import pythonSVG from '@/assets/images/python.svg'
|
||||
import javascriptSVG from '@/assets/images/javascript.svg'
|
||||
import cURLSVG from '@/assets/images/cURL.svg'
|
||||
|
||||
import useApi from 'hooks/useApi'
|
||||
import configApi from 'api/config'
|
||||
import vectorstoreApi from 'api/vectorstore'
|
||||
import useApi from '@/hooks/useApi'
|
||||
import configApi from '@/api/config'
|
||||
import vectorstoreApi from '@/api/vectorstore'
|
||||
|
||||
// Utils
|
||||
import {
|
||||
|
|
@ -41,14 +41,14 @@ import {
|
|||
getConfigExamplesForJS,
|
||||
getConfigExamplesForPython,
|
||||
getConfigExamplesForCurl
|
||||
} from 'utils/genericHelper'
|
||||
import useNotifier from 'utils/useNotifier'
|
||||
} from '@/utils/genericHelper'
|
||||
import useNotifier from '@/utils/useNotifier'
|
||||
|
||||
// Store
|
||||
import { flowContext } from 'store/context/ReactFlowContext'
|
||||
import { HIDE_CANVAS_DIALOG, SHOW_CANVAS_DIALOG } from 'store/actions'
|
||||
import { baseURL } from 'store/constant'
|
||||
import { enqueueSnackbar as enqueueSnackbarAction, closeSnackbar as closeSnackbarAction } from 'store/actions'
|
||||
import { flowContext } from '@/store/context/ReactFlowContext'
|
||||
import { HIDE_CANVAS_DIALOG, SHOW_CANVAS_DIALOG } from '@/store/actions'
|
||||
import { baseURL } from '@/store/constant'
|
||||
import { enqueueSnackbar as enqueueSnackbarAction, closeSnackbar as closeSnackbarAction } from '@/store/actions'
|
||||
|
||||
function TabPanel(props) {
|
||||
const { children, value, index, ...other } = props
|
||||
|
|
@ -6,17 +6,17 @@ import { Button } from '@mui/material'
|
|||
import { IconDatabaseImport, IconX } from '@tabler/icons'
|
||||
|
||||
// project import
|
||||
import { StyledFab } from 'ui-component/button/StyledFab'
|
||||
import { StyledFab } from '@/ui-component/button/StyledFab'
|
||||
import VectorStoreDialog from './VectorStoreDialog'
|
||||
|
||||
// api
|
||||
import vectorstoreApi from 'api/vectorstore'
|
||||
import vectorstoreApi from '@/api/vectorstore'
|
||||
|
||||
// Hooks
|
||||
import useNotifier from 'utils/useNotifier'
|
||||
import useNotifier from '@/utils/useNotifier'
|
||||
|
||||
// Const
|
||||
import { enqueueSnackbar as enqueueSnackbarAction, closeSnackbar as closeSnackbarAction } from 'store/actions'
|
||||
import { enqueueSnackbar as enqueueSnackbarAction, closeSnackbar as closeSnackbarAction } from '@/store/actions'
|
||||
|
||||
export const VectorStorePopUp = ({ chatflowid }) => {
|
||||
const dispatch = useDispatch()
|
||||
Loading…
Reference in New Issue