From fed9df29466c24e8213043d3371f05db96c24332 Mon Sep 17 00:00:00 2001 From: Marcel Hallmann Date: Sat, 8 Oct 2016 21:13:40 +0200 Subject: [PATCH] #6537 better default value for regex field --- src/ui/public/stringify/types/color.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ui/public/stringify/types/color.js b/src/ui/public/stringify/types/color.js index 871a520304fc5..ed90c52027dfd 100644 --- a/src/ui/public/stringify/types/color.js +++ b/src/ui/public/stringify/types/color.js @@ -7,7 +7,7 @@ export default function ColorFormatProvider(Private) { const FieldFormat = Private(IndexPatternsFieldFormatProvider); const DEFAULT_COLOR = { range: `${Number.NEGATIVE_INFINITY}:${Number.POSITIVE_INFINITY}`, - regex: '#000000', + regex: '', text: '#000000', background: '#ffffff' };