fix(SFDC): fix bug where opening new file would cause attachments to fail

This commit is contained in:
Evan Morikawa 2016-12-08 11:11:01 -08:00
parent 19c91829a4
commit 6a828a099f

View file

@ -585,8 +585,8 @@ Utils =
for commaPath in commaPaths
joinedVals = []
paths = commaPath.split("+")
for path in paths
parts = path.split(".")
for filePath in paths
parts = filePath.split(".")
curVal = model
for part in parts
if _.isFunction(curVal[part])