13 lines
446 B
TypeScript
13 lines
446 B
TypeScript
import type { FormTabRows } from '../../lib/render-rows';
|
|
|
|
export const id = 'unlimited';
|
|
export const title = 'Без ограничений';
|
|
|
|
export const rows: FormTabRows = [
|
|
[['cbxDisableChecks', 'selectUser']],
|
|
[['selectTarif', 'tbxCreditRate', 'selectRate']],
|
|
[['tbxMinPriceChange', 'tbxMaxPriceChange']],
|
|
[['tbxImporterRewardPerc', 'tbxImporterRewardRub']],
|
|
[['tbxBonusCoefficient', 'tbxComissionRub', 'tbxComissionPerc']],
|
|
];
|