The following has evaluated to null or missing: ==> nutritionDailyValueJSON["${currLabel!}"] [in template "https:__d3ldzx7fxfvsfy.cloudfront.net_135_studio_plugins_KHC_KR_RecipeDetailWidget.zip_v1608805033781_1643686089_KHC_KR_RecipeDetailWidget.ftl" at line 1150, column 31] ---- Tip: It's the final [] step that caused this error, not those before it. ---- Tip: If the failing expression is known to be legally refer to something that's null or missing, either specify a default value like myOptionalVar!myDefault, or use <#if myOptionalVar??>when-present<#else>when-missing#if>. (These only cover the last step of the expression; to cover the whole expression, use parenthesis: (myOptionalVar.foo)!myDefault, (myOptionalVar.foo)?? ---- Tip: It has been noticed that you are using ${...} as the sole content of a quoted string. That does nothing but forcably converts the value inside ${...} to string (as it inserts it into the enclosing string). If that's not what you meant, just remove the quotation marks, ${ and }; you don't need them. If you indeed wanted to convert to string, use myExpression?string instead. ---- ---- FTL stack trace ("~" means nesting-related): - Failed at: #assign adultValue = nutritionDailyVa... [in template "https:__d3ldzx7fxfvsfy.cloudfront.net_135_studio_plugins_KHC_KR_RecipeDetailWidget.zip_v1608805033781_1643686089_KHC_KR_RecipeDetailWidget.ftl" in macro "NutritionTableDailyValue" at line 1150, column 9] - Reached through: @NutritionTableDailyValue (localeProp... [in template "https:__d3ldzx7fxfvsfy.cloudfront.net_135_studio_plugins_KHC_KR_RecipeDetailWidget.zip_v1608805033781_1643686089_KHC_KR_RecipeDetailWidget.ftl" in macro "NutritionTable" at line 1289, column 71] - Reached through: @NutritionTable [in template "https:__d3ldzx7fxfvsfy.cloudfront.net_135_studio_plugins_KHC_KR_RecipeDetailWidget.zip_v1608805033781_1643686089_KHC_KR_RecipeDetailWidget.ftl" in macro "NutritionSection" at line 1390, column 29] - Reached through: @NutritionSection [in template "https:__d3ldzx7fxfvsfy.cloudfront.net_135_studio_plugins_KHC_KR_RecipeDetailWidget.zip_v1608805033781_1643686089_KHC_KR_RecipeDetailWidget.ftl" at line 2079, column 25] ----