Add IP, number, and boolean types to the static lookup field formatter (#45585)

* Add number to the types for the static lookup

* Add other types for the static lookup
This commit is contained in:
Lukas Olson 2019-09-13 14:04:12 -07:00
parent 65a31173c2
commit 130863cf98

View file

@ -43,6 +43,6 @@ export function createStaticLookupFormat(FieldFormat) {
static id = 'static_lookup';
static title = 'Static Lookup';
static fieldType = ['string'];
static fieldType = ['string', 'number', 'ip', 'boolean'];
};
}