This commit is contained in:
2023-08-07 15:52:58 +03:00
parent 03071a7f91
commit 34bf7b55df
7 changed files with 181 additions and 18 deletions

View File

@ -15,7 +15,7 @@ export const TrackerSelectColumn = ({ columns, task, currentColumn }) => {
className="trackerSelectColumn"
onClick={() => setOpenSelect(!openSelect)}
>
<p>Выберите колонку</p>
<p>{currentColumn.title}</p>
<img className={openSelect ? "open" : ""} src={arrowDown} alt="arrow" />
{openSelect && (
<div className="trackerSelectColumn__dropDown">
@ -26,7 +26,7 @@ export const TrackerSelectColumn = ({ columns, task, currentColumn }) => {
onClick={() => {
dispatch(
moveProjectTask({
startWrapperIndex: { index: currentColumn, task },
startWrapperIndex: { index: currentColumn.id, task },
columnId: column.id,
})
);

View File

@ -15,8 +15,8 @@
p {
color: #252c32;
font-weight: 400;
font-size: 14px;
font-weight: 500;
font-size: 16px;
line-height: 24px;
}