adaptive
This commit is contained in:
parent
34bf7b55df
commit
8e6eb29f5c
@ -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={() => {
|
||||
<div
|
||||
className="tasks__board__item__title"
|
||||
onClick={() => {
|
||||
if (window.innerWidth < 985) {
|
||||
window.location.replace(`/tracker/task/${task.id}`)
|
||||
window.location.replace(
|
||||
`/tracker/task/${task.id}`
|
||||
);
|
||||
}
|
||||
}}>
|
||||
}}
|
||||
>
|
||||
<p className="task__board__item__title">
|
||||
{task.title}
|
||||
</p>
|
||||
|
Loading…
Reference in New Issue
Block a user