mirror of
https://github.com/Nezumi-2711/react-training.git
synced 2026-09-22 20:01:59 +00:00
Fix style code format
This commit is contained in:
@@ -198,8 +198,8 @@ const UserForm = ({
|
||||
label="Full Name"
|
||||
error={
|
||||
// prettier-ignore
|
||||
errors.name && dirty.name ?
|
||||
(errors.name as string)
|
||||
errors.name && dirty.name
|
||||
? (errors.name as string)
|
||||
: ''
|
||||
}
|
||||
>
|
||||
@@ -231,8 +231,8 @@ const UserForm = ({
|
||||
label="Phone"
|
||||
error={
|
||||
// prettier-ignore
|
||||
errors.phone && dirty.phone ?
|
||||
(errors.phone as string)
|
||||
errors.phone && dirty.phone
|
||||
? (errors.phone as string)
|
||||
: ''
|
||||
}
|
||||
>
|
||||
@@ -248,8 +248,8 @@ const UserForm = ({
|
||||
label="Room"
|
||||
error={
|
||||
// prettier-ignore
|
||||
errors.roomId && dirty.roomId ?
|
||||
(errors.roomId as string)
|
||||
errors.roomId && dirty.roomId
|
||||
? (errors.roomId as string)
|
||||
: ''
|
||||
}
|
||||
>
|
||||
@@ -265,8 +265,8 @@ const UserForm = ({
|
||||
label="Address"
|
||||
error={
|
||||
// prettier-ignore
|
||||
errors.address && dirty.address ?
|
||||
(errors.address as string)
|
||||
errors.address && dirty.address
|
||||
? (errors.address as string)
|
||||
: ''
|
||||
}
|
||||
>
|
||||
|
||||
@@ -28,6 +28,7 @@ import Spinner from '../../commons/styles/Spinner';
|
||||
|
||||
// Utils
|
||||
import { sendRequest } from '../../helpers/sendRequest';
|
||||
import { USER_PAGE } from '../../constants/variables';
|
||||
|
||||
interface IUserRow {
|
||||
user: TUser;
|
||||
@@ -142,25 +143,9 @@ const UserTable = ({
|
||||
<>
|
||||
<Direction>
|
||||
<StyledOperationTable>
|
||||
<OrderBy
|
||||
options={[
|
||||
{ value: 'asc', label: 'Ascending' },
|
||||
{ value: 'desc', label: 'Descending' },
|
||||
]}
|
||||
/>
|
||||
<OrderBy options={USER_PAGE.ORDERBY_OPTIONS} />
|
||||
|
||||
<SortBy
|
||||
options={[
|
||||
{ value: 'id', label: 'Sort by id' },
|
||||
{ value: 'name', label: 'Sort by name' },
|
||||
{
|
||||
value: 'identifiedCode',
|
||||
label: 'Sort by identified code',
|
||||
},
|
||||
{ value: 'phone', label: 'Sort by phone' },
|
||||
{ value: 'roomId', label: 'Sort by room' },
|
||||
]}
|
||||
/>
|
||||
<SortBy options={USER_PAGE.SORTBY_OPTIONS} />
|
||||
<Search setPhoneSearch={setPhoneSearch} />
|
||||
</StyledOperationTable>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user