Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit f4bb913

Browse files
authored
fix(tickets): convert to ticket in inbox
1 parent a5c7853 commit f4bb913

File tree

2 files changed

+447
-471
lines changed

2 files changed

+447
-471
lines changed

packages/ui-tickets/src/boards/components/BoardSelect.tsx

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,10 @@
11
import { IBoard, IPipeline, IStage } from "../types";
22

33
import ControlLabel from "@erxes/ui/src/components/form/Label";
4-
import { FormContainer } from "../styles/common";
54
import Select, { components } from "react-select";
65
import FormGroup from "@erxes/ui/src/components/form/Group";
76
import React from "react";
87
import { selectOptions } from "../utils";
9-
import { nextMonth } from "@erxes/ui/src/utils/calendar";
108
type Props = {
119
boards: IBoard[];
1210
pipelines: IPipeline[];
@@ -83,7 +81,7 @@ class BoardSelect extends React.Component<Props> {
8381
__("Choose a board"),
8482
boardId,
8583
(board) => onChangeBoard(board.value),
86-
selectOptions(boards)
84+
selectOptions(boards),
8785
)}
8886
</FormGroup>
8987

@@ -97,7 +95,7 @@ class BoardSelect extends React.Component<Props> {
9795
const name = selected?.isHideName || false;
9896
onChangePipeline(pipeline.value, name);
9997
},
100-
selectOptions(pipelines)
98+
selectOptions(pipelines),
10199
)}
102100
</FormGroup>
103101

@@ -107,7 +105,7 @@ class BoardSelect extends React.Component<Props> {
107105
__("Choose a stage"),
108106
stageId,
109107
(stage) => onChangeStage(stage.value, callback),
110-
selectOptions(stages)
108+
selectOptions(stages),
111109
)}
112110
</FormGroup>
113111
</>

0 commit comments

Comments
 (0)