File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
src/user/Admin/Tickets/Filter Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -13,7 +13,6 @@ import CheckOutlinedIcon from "@material-ui/icons/CheckOutlined";
1313import SearchOutlinedIcon from "@material-ui/icons/SearchOutlined" ;
1414import LocationOnOutlinedIcon from "@material-ui/icons/LocationOnOutlined" ;
1515
16-
1716// Author, tags and status are the three filters that we want
1817// only one author can be selected at a time, clicking on a different authoir will unclick the first author
1918// implement search bar in author filter
@@ -193,7 +192,7 @@ class Filter extends Component {
193192 roundedCircle
194193 />
195194 < div style = { { fontSize : "13px" , fontFamily : "Inter" } } >
196- < strong > { ele . name . firstName } </ strong >
195+ < strong > { ` ${ ele . name . firstName } ${ ele . name . lastName } ` } </ strong >
197196 < div > { ele . info . about . designation } </ div >
198197 < div >
199198 { ele . info . about . location && < LocationOnOutlinedIcon /> }
@@ -344,6 +343,7 @@ class Filter extends Component {
344343 < div className = "moderator-modal-user" >
345344 { userInfo ( ele ) }
346345 < Button
346+ style = { { marginLeft : "16px" } }
347347 onClick = { ( ) => this . addModerator ( ele . _id . toString ( ) ) }
348348 >
349349 Add
@@ -359,6 +359,7 @@ class Filter extends Component {
359359 < div className = "moderator-modal-user" >
360360 { userInfo ( ele ) }
361361 < Button
362+ style = { { marginLeft : "16px" } }
362363 onClick = { ( ) =>
363364 this . removeModerator ( ele . _id . toString ( ) )
364365 }
You can’t perform that action at this time.
0 commit comments