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:
Anmol Singh Bhatia 2023-06-24 18:09:06 +05:30 committed by GitHub
parent 7acd4ef1af
commit fd30ea9a20
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
12 changed files with 390 additions and 231 deletions

View file

@ -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(
{