mirror of
https://github.com/more-tech4-magnum-opus/frontend.git
synced 2024-11-21 16:16:34 +03:00
add clan in table
This commit is contained in:
parent
fa344c09e4
commit
03e7393ab8
|
@ -1,7 +1,7 @@
|
|||
.addProduct{
|
||||
padding-top: 200px;
|
||||
width: 100%;
|
||||
height: 100vh;
|
||||
min-height: 100vh;
|
||||
background: linear-gradient(85.91deg, #096DD9 0%, #40A9FF 100%);
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
|
|
|
@ -19,7 +19,7 @@
|
|||
.market{
|
||||
padding-top: 200px;
|
||||
width: 100%;
|
||||
height: 100vh;
|
||||
min-height: 100vh;
|
||||
background: linear-gradient(85.91deg, #096DD9 0%, #40A9FF 100%);
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
.changeProduct{
|
||||
padding-top: 200px;
|
||||
width: 100%;
|
||||
height: 100vh;
|
||||
min-height: 100vh;
|
||||
background: linear-gradient(85.91deg, #096DD9 0%, #40A9FF 100%);
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
.userCard{
|
||||
padding-top: 200px;
|
||||
width: 100%;
|
||||
height: 100vh;
|
||||
min-height: 100vh;
|
||||
background: linear-gradient(85.91deg, #096DD9 0%, #40A9FF 100%);
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
|
|
|
@ -142,6 +142,7 @@ export const UserTable:React.FC = () =>{
|
|||
respect: user.respect,
|
||||
balance: user.salary,
|
||||
jobTittle: user.department,
|
||||
clan: user.clan_name
|
||||
}) as EmployerIE ))))
|
||||
})
|
||||
adminFetcher.get("season/clans/").then((response:any)=>{
|
||||
|
@ -168,7 +169,7 @@ export const UserTable:React.FC = () =>{
|
|||
{
|
||||
name: user.name,
|
||||
balance: user.balance,
|
||||
command: user.command,
|
||||
command: user.clan,
|
||||
speciality: user.jobTittle,
|
||||
key: user.telegramID,
|
||||
telegram: user.telegramID,
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
.userTable{
|
||||
padding-top: 200px;
|
||||
width: 100%;
|
||||
height: 100vh;
|
||||
min-height: 100vh;
|
||||
background: linear-gradient(85.91deg, #096DD9 0%, #40A9FF 100%);
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
|
|
|
@ -26,6 +26,7 @@ export interface EmployerIE extends UserIE{
|
|||
respect: number,
|
||||
telegramID: string,
|
||||
command: string,
|
||||
clan:string
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user