debag-conflict
This commit is contained in:
2024-02-09 18:27:43 +03:00
34 changed files with 371 additions and 287 deletions

View File

@ -812,7 +812,7 @@ export const TicketFullScreen = () => {
<div className="workers fullscreen-workers">
<div className="workers_box task__info">
<div className="workers__creator">
Создатель: <p>&nbsp;{taskInfo.user?.fio}</p>
Создатель: <p>{taskInfo.user?.fio}</p>
</div>
{taskInfo.executor ? (
@ -908,7 +908,7 @@ export const TicketFullScreen = () => {
>
+
</button>
<span>Добавить участников</span>
<span>Добавить участника</span>
{dropListMembersOpen && (
<div className="dropdown-list">
<img
@ -972,7 +972,6 @@ export const TicketFullScreen = () => {
</div>
<div className="time">
<img src={watch}></img>
<span>Длительность: </span>
<p>
{correctTimerTime(currentTimerCount.hours)}:
{correctTimerTime(currentTimerCount.minute)}:
@ -1152,7 +1151,7 @@ export const TicketFullScreen = () => {
</div>
{acceptModalOpen && (
<AcceptModal
title={"Вы точно хотите переместить задачу в архив?"}
title={"Вы действительно хотите переместить задачу в архив?"}
closeModal={closeAcceptModal}
agreeHandler={deleteTask}
/>