fix: batch mobile layout fixes (#1641)

This commit is contained in:
Yuhao
2023-11-28 20:05:19 +08:00
committed by GitHub
parent cf0ba794d7
commit 3c37fd37fa
11 changed files with 42 additions and 49 deletions

View File

@@ -17,6 +17,7 @@ import ModifyRetrievalModal from './modify-retrieval-modal'
import type { HitTestingResponse, HitTesting as HitTestingType } from '@/models/datasets'
import Loading from '@/app/components/base/loading'
import Modal from '@/app/components/base/modal'
import Drawer from '@/app/components/base/drawer'
import Pagination from '@/app/components/base/pagination'
import FloatRightContainer from '@/app/components/base/float-right-container'
import { fetchTestingRecords } from '@/service/datasets'
@@ -206,7 +207,7 @@ const HitTesting: FC<Props> = ({ datasetId }: Props) => {
}}
/>}
</Modal>
{isShowModifyRetrievalModal && (
<Drawer isOpen={isShowModifyRetrievalModal} onClose={() => setIsShowModifyRetrievalModal(false)} footer={null} mask={isMobile} panelClassname='mt-16 mx-2 sm:mr-2 mb-3 !p-0 !max-w-[640px] rounded-xl'>
<ModifyRetrievalModal
indexMethod={currentDataset?.indexing_technique || ''}
value={retrievalConfig}
@@ -217,7 +218,7 @@ const HitTesting: FC<Props> = ({ datasetId }: Props) => {
setIsShowModifyRetrievalModal(false)
}}
/>
)}
</Drawer>
</div>
)
}

View File

@@ -66,9 +66,8 @@ const ModifyRetrievalModal: FC<Props> = ({
return (
<div
className='fixed top-16 right-2 flex flex-col bg-white border-[0.5px] border-gray-200 rounded-xl shadow-xl z-10'
className='w-full flex flex-col bg-white border-[0.5px] border-gray-200 rounded-xl shadow-xl'
style={{
width: 632,
height: 'calc(100vh - 72px)',
}}
ref={ref}