mirror of
https://gitlab.com/mbugroup/lti-web-client.git
synced 2026-05-25 15:55:48 +00:00
feat(FE): Add "Ditolak" option to statusOptions in MarketingFilter
This commit is contained in:
@@ -79,10 +79,13 @@ const MarketingFilterModal = ({
|
|||||||
});
|
});
|
||||||
}, [customersOptions]);
|
}, [customersOptions]);
|
||||||
|
|
||||||
const statusOptions = MARKETING_APPROVAL_LINE.map((item) => ({
|
const statusOptions = [
|
||||||
|
...MARKETING_APPROVAL_LINE.map((item) => ({
|
||||||
value: item.step_name.split(' ').join('_').toUpperCase(),
|
value: item.step_name.split(' ').join('_').toUpperCase(),
|
||||||
label: item.step_name,
|
label: item.step_name,
|
||||||
}));
|
})),
|
||||||
|
{ value: 'DITOLAK', label: 'Ditolak' },
|
||||||
|
];
|
||||||
|
|
||||||
const formik = useFormik<{
|
const formik = useFormik<{
|
||||||
product_ids: OptionType[];
|
product_ids: OptionType[];
|
||||||
|
|||||||
Reference in New Issue
Block a user