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",
"bulletedList",
"numberedList",
"blockQuote",
],
removePlugins: ["BlockQuote"],
placeholder: "Описание задачи",

View File

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