Commit 04a79333 by Urvil Shah

Remove Extra Space

parent 1cf5c689
Pipeline #7571 passed with stages
in 23 minutes 15 seconds
...@@ -103,7 +103,7 @@ namespace Mobile.Search.Web.Controllers ...@@ -103,7 +103,7 @@ namespace Mobile.Search.Web.Controllers
{ {
var json = _dynamoClient.Get("prd_2click_templates", "templateKey", templateKey); var json = _dynamoClient.Get("prd_2click_templates", "templateKey", templateKey);
var j = JObject.Parse(json); var j = JObject.Parse(json);
var kvp = new KeyValuePair<string, string>((string)j["templateKey"], (string)j["html"]); var kvp = new KeyValuePair<string, string>(((string)j["templateKey"]).Trim(), (string)j["html"]);
return View("FroalaIndex", kvp); return View("FroalaIndex", kvp);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment