commit
36b015b525
@ -48,7 +48,7 @@ export const ModalRegistration = ({ active, setActive }) => {
|
||||
if (inputsValue.password.length < 6) {
|
||||
setInputsError((prevValue) => ({ ...prevValue, password: true }));
|
||||
}
|
||||
if (inputsValue.userName.length < 6) {
|
||||
if (inputsValue.userName.length < 2) {
|
||||
setInputsError((prevValue) => ({ ...prevValue, name: true }));
|
||||
}
|
||||
if (!validateEmail(inputsValue.email)) {
|
||||
@ -120,9 +120,9 @@ export const ModalRegistration = ({ active, setActive }) => {
|
||||
userName: e.target.value,
|
||||
}));
|
||||
}}
|
||||
placeholder="Name"
|
||||
placeholder="Имя"
|
||||
/>
|
||||
{inputsError.name && <span>Минимум 6 символов</span>}
|
||||
{inputsError.name && <span>Минимум 2 символов</span>}
|
||||
</div>
|
||||
<div className="inputContainer">
|
||||
<h5>E-mail</h5>
|
||||
@ -140,7 +140,7 @@ export const ModalRegistration = ({ active, setActive }) => {
|
||||
email: e.target.value,
|
||||
}));
|
||||
}}
|
||||
placeholder="Email"
|
||||
placeholder="Почта"
|
||||
/>
|
||||
{inputsError.email && <span>Введите коректный email</span>}
|
||||
</div>
|
||||
@ -165,7 +165,7 @@ export const ModalRegistration = ({ active, setActive }) => {
|
||||
password: e.target.value,
|
||||
}));
|
||||
}}
|
||||
placeholder="Password"
|
||||
placeholder="Пароль"
|
||||
/>
|
||||
{inputsError.password && <span>Минимум 6 символов</span>}
|
||||
</div>
|
||||
|
@ -1013,7 +1013,7 @@ export const ModalTiсket = ({
|
||||
<span>
|
||||
{typeof taskPriority === "number"
|
||||
? priority[taskPriority]
|
||||
: "Выберете приоритет"}
|
||||
: "Выберите приоритет"}
|
||||
</span>
|
||||
<img
|
||||
className={selectPriorityOpen ? "open" : ""}
|
||||
|
@ -1164,7 +1164,7 @@ export const TicketFullScreen = () => {
|
||||
className="tags__select"
|
||||
onClick={() => setSelectTagsOpen(!selectTagsOpen)}
|
||||
>
|
||||
<span>Выберете тег</span>
|
||||
<span>Выберите тег</span>
|
||||
<img
|
||||
className={selectTagsOpen ? "open" : ""}
|
||||
src={arrowDown}
|
||||
@ -1207,7 +1207,7 @@ export const TicketFullScreen = () => {
|
||||
<span>
|
||||
{typeof taskPriority === "number"
|
||||
? priority[taskPriority]
|
||||
: "Выберете приоритет"}
|
||||
: "Выберите приоритет"}
|
||||
</span>
|
||||
<img
|
||||
className={selectPriorityOpen ? "open" : ""}
|
||||
|
@ -568,7 +568,7 @@ export const TrackerModal = ({
|
||||
className="tags__selected__name"
|
||||
onClick={() => setSelectTagsOpen(!selectTagsOpen)}
|
||||
>
|
||||
Выберете тег
|
||||
Выберите тег
|
||||
<img
|
||||
className={
|
||||
selectTagsOpen ? "arrow arrow--open" : "arrow"
|
||||
@ -612,7 +612,7 @@ export const TrackerModal = ({
|
||||
>
|
||||
{selectedPriority
|
||||
? `Приоритет: ${selectedPriority.name}`
|
||||
: "Выберети приоритет"}
|
||||
: "Выберити приоритет"}
|
||||
<img
|
||||
className={selectPriority ? "arrow arrow--open" : "arrow"}
|
||||
src={arrowDown}
|
||||
|
Loading…
Reference in New Issue
Block a user