diff --git a/src/components/SearchForm.jsx b/src/components/SearchForm.jsx index acfd6a3..e53caec 100644 --- a/src/components/SearchForm.jsx +++ b/src/components/SearchForm.jsx @@ -52,6 +52,7 @@ const SearchForm = ({ initialValue, onSubmit, onReset, confirmText, formName, fo const formValuesMapper = (values) => { const destinationObject = { 'keyword': { key: 'keyword', transform: (value) => value || '' }, + 'username': { key: 'username', transform: (value) => value || '' }, 'referenceNo': { key: 'referenceNo', transform: (value) => value || '' }, 'dates': [ { key: 'startdate', transform: (arrVal) => (arrVal ? arrVal[0].format(DATE_FORMAT) : '') },