fix render rows order (Insurance tab)
This commit is contained in:
parent
7664e71506
commit
d8c3bcdd17
@ -1,4 +1,5 @@
|
||||
import type { FormTabRows } from '../../lib/render-rows';
|
||||
import { transformRowsForMobile } from '../lib/utils';
|
||||
|
||||
export const id = 'insurance';
|
||||
export const title = 'Страхование';
|
||||
@ -11,3 +12,5 @@ export const rows: FormTabRows = [
|
||||
[['tbxEngineVolume', 'cbxInsDecentral', 'selectGPSModel']],
|
||||
[['selectLeasingWithoutKasko', 'selectInsNSIB']],
|
||||
];
|
||||
|
||||
export const mobileRows = transformRowsForMobile(rows);
|
||||
|
||||
@ -1,15 +1,15 @@
|
||||
import renderFormRows from '../../lib/render-rows';
|
||||
import { id, rows, title } from './config';
|
||||
import { id, mobileRows, rows, title } from './config';
|
||||
import FinGAPTable from './FinGAPTable';
|
||||
import InsuranceTable from './InsuranceTable';
|
||||
import { Media } from '@/styles/media';
|
||||
import { Flex } from 'ui/grid';
|
||||
|
||||
function Insurance() {
|
||||
const renderedRows = renderFormRows(rows);
|
||||
|
||||
return (
|
||||
<Flex flexDirection="column">
|
||||
{renderedRows}
|
||||
<Media lessThan="laptop">{renderFormRows(mobileRows)}</Media>
|
||||
<Media greaterThanOrEqual="laptop">{renderFormRows(rows)}</Media>
|
||||
<InsuranceTable />
|
||||
<FinGAPTable />
|
||||
</Flex>
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user