ankitg06

Results 2 comments of ankitg06

I addressed this by mapping "viewValue" in the "format" function to modelValue.name instead of modelValue.formatted_address.

Here's the block: ``` function format(modelValue) { var viewValue = ""; if (isString(modelValue)) { viewValue = modelValue; } else if (isObject(modelValue)) { viewValue = attrs.nameAsViewResult ? modelValue.name : modelValue.formatted_address; //...