style: spreadsheet columns (#2554)
* style: spreadsheet columns * fix: build errors
This commit is contained in:
parent
cb533849e8
commit
442c83eea2
47 changed files with 171 additions and 263 deletions
|
|
@ -90,7 +90,7 @@ export const ViewAssigneeSelect: React.FC<Props> = ({
|
|||
if (newData.includes(data)) newData.splice(newData.indexOf(data), 1);
|
||||
else newData.push(data);
|
||||
|
||||
partialUpdateIssue({ assignees_list: data }, issue);
|
||||
partialUpdateIssue({ assignees: data }, issue);
|
||||
|
||||
trackEventService.trackIssuePartialPropertyUpdateEvent(
|
||||
{
|
||||
|
|
|
|||
|
|
@ -139,7 +139,7 @@ export const ViewLabelSelect: FC<Props> = ({
|
|||
<CustomSearchSelect
|
||||
value={issue.labels}
|
||||
onChange={(data: string[]) => {
|
||||
partialUpdateIssue({ labels_list: data }, issue);
|
||||
partialUpdateIssue({ labels: data }, issue);
|
||||
}}
|
||||
options={options}
|
||||
{...(customButton ? { customButton: labelsLabel } : { label: labelsLabel })}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue