flow fixes

Summary: Fixes a flow issue in the type definition of a filter. The color can be optional.

Reviewed By: passy

Differential Revision: D9850602

fbshipit-source-id: 1d74d0462baef58ad1a93e23152583679f51c177
This commit is contained in:
Daniel Büchele
2018-09-21 10:30:09 -07:00
committed by Facebook Github Bot
parent 26dd94f072
commit 9ef8d32053

View File

@@ -17,7 +17,7 @@ export type Filter =
type: 'enum',
enum: Array<{
label: string,
color: string,
color?: string,
value: string,
}>,
persistent?: boolean,