Merge pull request #125 from apuc/tracker-tasks

Tracker tasks
This commit is contained in:
NikoM1k 2023-08-11 22:56:59 +03:00 committed by GitHub
commit 870fe6d4b9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 7 deletions

View File

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

View File

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