This commit is contained in:
Николай Полтщук 2023-08-11 22:44:54 +03:00
parent 4f0d0d9634
commit 433fc88f99
2 changed files with 8 additions and 9 deletions

View File

@ -410,7 +410,6 @@ export const TrackerModal = ({
"link", "link",
"bulletedList", "bulletedList",
"numberedList", "numberedList",
"blockQuote",
], ],
removePlugins: ["BlockQuote"], removePlugins: ["BlockQuote"],
placeholder: "Описание задачи", placeholder: "Описание задачи",

View File

@ -569,14 +569,14 @@ export const ProjectTracker = () => {
<div className="board__head__more"> <div className="board__head__more">
<span <span
className="add" className="add"
onClick={() => onClick={() => {
{ selectedTabTask(
selectedTabTask( column.id,
column.id, projectBoard?.columns && column.tasks.length
projectBoard?.columns && column.tasks.length ? column.tasks.at(-1).priority + 1 : 1 ? column.tasks.at(-1).priority + 1
) : 1
} );
} }}
> >
+ +
</span> </span>