Skip to content

Commit 528c2b8

Browse files
committed
ID-36: use 'property' as default source for new fields
1 parent ae4cabf commit 528c2b8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/resources/scripts/lib/envconfig.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ def __get_field(self, field_key):
109109
json_field = json_entity["fields"][fpk]
110110
json_field["used"] = True
111111
else:
112-
json_field = {"type": field_key.type, "value": None, "used": True, "source": "value"}
112+
json_field = {"type": field_key.type, "value": None, "used": True, "source": "property"}
113113
json_entity["fields"][fpk] = json_field
114114
self.__missing_vars = True
115115
return json_field

0 commit comments

Comments
 (0)