Skip to content

Commit 97d4f9b

Browse files
authored
Update customField.ts (#28)
display object property contains only cardFront property. All other properties should be outside display object property.
1 parent 908ef4b commit 97d4f9b

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

src/api/models/customField.ts

+11-11
Original file line numberDiff line numberDiff line change
@@ -7,17 +7,17 @@ export interface CustomField {
77
fieldGroup?: string;
88
display?: {
99
cardFront?: boolean;
10-
name?: string;
11-
pos?: string;
12-
options?: {
13-
id?: TrelloID;
14-
idCustomField?: TrelloID;
15-
value?: {
16-
text?: string;
17-
};
18-
color?: string;
19-
pos?: number;
20-
}[];
2110
};
11+
name?: string;
12+
pos?: string;
13+
options?: {
14+
id?: TrelloID;
15+
idCustomField?: TrelloID;
16+
value?: {
17+
text?: string;
18+
};
19+
color?: string;
20+
pos?: number;
21+
}[];
2222
type?: string;
2323
}

0 commit comments

Comments
 (0)