adaptive
This commit is contained in:
		| @@ -626,7 +626,9 @@ export const TicketFullScreen = () => { | ||||
|                       }} | ||||
|                     /> | ||||
|                   ) : ( | ||||
|                     <h5 className="fullName nameFullScreen">{inputsValue.title}</h5> | ||||
|                     <h5 className="fullName nameFullScreen"> | ||||
|                       {inputsValue.title} | ||||
|                     </h5> | ||||
|                   )} | ||||
|                   <div className="content__description"> | ||||
|                     {editOpen ? ( | ||||
| @@ -774,8 +776,7 @@ export const TicketFullScreen = () => { | ||||
|               <div className="workers fullScreenWorkers"> | ||||
|                 <div className="workers_box task__info"> | ||||
|                   <p className="workers__creator"> | ||||
|                     Создатель : | ||||
|                     <p> {taskInfo.user?.fio}</p> | ||||
|                     Создатель :<p> {taskInfo.user?.fio}</p> | ||||
|                   </p> | ||||
|  | ||||
|                   {taskInfo.executor ? ( | ||||
|   | ||||
| @@ -634,11 +634,16 @@ export const ProjectTracker = () => { | ||||
|                               } | ||||
|                               onClick={(e) => openTicket(e, task)} | ||||
|                             > | ||||
|                               <div className="tasks__board__item__title" onClick={() => { | ||||
|                                 if (window.innerWidth < 985) { | ||||
|                                   window.location.replace(`/tracker/task/${task.id}`) | ||||
|                                 } | ||||
|                               }}> | ||||
|                               <div | ||||
|                                 className="tasks__board__item__title" | ||||
|                                 onClick={() => { | ||||
|                                   if (window.innerWidth < 985) { | ||||
|                                     window.location.replace( | ||||
|                                       `/tracker/task/${task.id}` | ||||
|                                     ); | ||||
|                                   } | ||||
|                                 }} | ||||
|                               > | ||||
|                                 <p className="task__board__item__title"> | ||||
|                                   {task.title} | ||||
|                                 </p> | ||||
|   | ||||
		Reference in New Issue
	
	Block a user