From 2426405727fc44cad884f97c21bb5383378be5b8 Mon Sep 17 00:00:00 2001 From: wouter van der plas <2423856+wvanderp@users.noreply.github.com> Date: Wed, 8 Jun 2022 13:33:22 +0200 Subject: [PATCH] Made target and country case sensitive (#490) --- data/fields/country.json | 4 +++- data/fields/target.json | 4 +++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/data/fields/country.json b/data/fields/country.json index 3ad365da..da810ff8 100644 --- a/data/fields/country.json +++ b/data/fields/country.json @@ -1,5 +1,7 @@ { "key": "country", "type": "combo", - "label": "Country" + "label": "Country", + "snake_case": false, + "caseSensitive": true } diff --git a/data/fields/target.json b/data/fields/target.json index a3975ea6..40f69c21 100644 --- a/data/fields/target.json +++ b/data/fields/target.json @@ -1,5 +1,7 @@ { "key": "target", "type": "combo", - "label": "Target" + "label": "Target", + "snake_case": false, + "caseSensitive": true }