mirror of
https://github.com/cheveguerra/whaticket-community.git
synced 2026-04-17 19:37:02 +00:00
Names props error
This commit is contained in:
@@ -105,9 +105,9 @@ const useStyles = makeStyles(theme => ({
|
|||||||
marginRight: 5,
|
marginRight: 5,
|
||||||
right: 5,
|
right: 5,
|
||||||
bottom: 5,
|
bottom: 5,
|
||||||
background:"#2576D2",
|
background: "#2576D2",
|
||||||
color: "#ffffff",
|
color: "#ffffff",
|
||||||
border:"1px solid #CCC",
|
border: "1px solid #CCC",
|
||||||
padding: 1,
|
padding: 1,
|
||||||
paddingLeft: 5,
|
paddingLeft: 5,
|
||||||
paddingRight: 5,
|
paddingRight: 5,
|
||||||
@@ -212,7 +212,7 @@ const TicketListItem = ({ ticket }) => {
|
|||||||
</Typography>
|
</Typography>
|
||||||
)}
|
)}
|
||||||
{ticket.whatsappId && (
|
{ticket.whatsappId && (
|
||||||
<div className={classes.userTag} title={i18n.t("ticketsList.connectionTitle")}>{ticket.whatsapp.name}</div>
|
<div className={classes.userTag} title={i18n.t("ticketsList.connectionTitle")}>{ticket.whatsapp?.name}</div>
|
||||||
)}
|
)}
|
||||||
</span>
|
</span>
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -18,10 +18,10 @@ import {
|
|||||||
InputAdornment,
|
InputAdornment,
|
||||||
IconButton,
|
IconButton,
|
||||||
Link
|
Link
|
||||||
} from '@material-ui/core';
|
} from '@material-ui/core';
|
||||||
|
|
||||||
import { LockOutlined, Visibility, VisibilityOff } from '@material-ui/icons';
|
import { LockOutlined, Visibility, VisibilityOff } from '@material-ui/icons';
|
||||||
|
|
||||||
import { makeStyles } from "@material-ui/core/styles";
|
import { makeStyles } from "@material-ui/core/styles";
|
||||||
|
|
||||||
import { i18n } from "../../translate/i18n";
|
import { i18n } from "../../translate/i18n";
|
||||||
@@ -155,16 +155,16 @@ const SignUp = () => {
|
|||||||
label={i18n.t("signup.form.password")}
|
label={i18n.t("signup.form.password")}
|
||||||
type={showPassword ? 'text' : 'password'}
|
type={showPassword ? 'text' : 'password'}
|
||||||
InputProps={{
|
InputProps={{
|
||||||
endAdornment: (
|
endAdornment: (
|
||||||
<InputAdornment position="end">
|
<InputAdornment position="end">
|
||||||
<IconButton
|
<IconButton
|
||||||
aria-label="toggle password visibility"
|
aria-label="toggle password visibility"
|
||||||
onClick={() => setShowPassword((e) => !e)}
|
onClick={() => setShowPassword((e) => !e)}
|
||||||
>
|
>
|
||||||
{showPassword ? <VisibilityOff /> : <Visibility />}
|
{showPassword ? <VisibilityOff /> : <Visibility />}
|
||||||
</IconButton>
|
</IconButton>
|
||||||
</InputAdornment>
|
</InputAdornment>
|
||||||
)
|
)
|
||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</Grid>
|
</Grid>
|
||||||
@@ -178,7 +178,7 @@ const SignUp = () => {
|
|||||||
>
|
>
|
||||||
{i18n.t("signup.buttons.submit")}
|
{i18n.t("signup.buttons.submit")}
|
||||||
</Button>
|
</Button>
|
||||||
<Grid container justify="flex-end">
|
<Grid container justifyContent="flex-end">
|
||||||
<Grid item>
|
<Grid item>
|
||||||
<Link
|
<Link
|
||||||
href="#"
|
href="#"
|
||||||
|
|||||||
Reference in New Issue
Block a user