Задача
{editOpen ? (
{
setInputsValue((prevValue) => ({
...prevValue,
title: e.target.value,
}));
}}
/>
) : (
{inputsValue.title}
)}
{editOpen ? (
{
setInputsValue((prevValue) => ({
...prevValue,
description: e.target.value,
}));
}}
/>
) : (
{inputsValue.description}
)}
{/*

*/}
{
dispatch(modalToggle("addSubtask"));
setAddSubtask(true);
}}
styles={"tasks__button"}
>
Добавить под задачу
Загрузить файл
{0}
Файлов
{comments.map((comment) => {
return (
{getCorrectDate(comment.created_at)}

{
if (commentsEditOpen[comment.id]) {
editComment(comment.id);
}
setCommentsEditOpen((prevValue) => ({
...prevValue,
[comment.id]: !prevValue[comment.id],
}));
}}
/>

deleteComment(comment.id)}
/>
{commentsEditOpen[comment.id] ? (
{
setCommentsEditText((prevValue) => ({
...prevValue,
[comment.id]: e.target.value,
}));
}}
/>
) : (
{commentsEditText[comment.id]}
)}
);
})}