feat: editable label option added in all view , fix: view page list and kanban view mutation fix, chore: code refactor (#1390)
* feat: editable label select component added in spreadsheet view * feat: editable label select option added in all view, chore: code refactor * fix: view page list and kanban view mutation fix and sub issue mutation, chore: refactor partial update issue function * fix: build fix
This commit is contained in:
parent
7acd4ef1af
commit
fd30ea9a20
12 changed files with 390 additions and 231 deletions
|
|
@ -19,7 +19,7 @@ import { STATES_LIST } from "constants/fetch-keys";
|
|||
|
||||
type Props = {
|
||||
issue: IIssue;
|
||||
partialUpdateIssue: (formData: Partial<IIssue>, issueId: string) => void;
|
||||
partialUpdateIssue: (formData: Partial<IIssue>, issue: IIssue) => void;
|
||||
position?: "left" | "right";
|
||||
selfPositioned?: boolean;
|
||||
customButton?: boolean;
|
||||
|
|
@ -83,7 +83,7 @@ export const ViewStateSelect: React.FC<Props> = ({
|
|||
priority: issue.priority,
|
||||
target_date: issue.target_date,
|
||||
},
|
||||
issue.id
|
||||
issue
|
||||
);
|
||||
trackEventServices.trackIssuePartialPropertyUpdateEvent(
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue