diff --git a/src/Umbraco.Web.UI/Views/Partials/Grid/Editors/Embed.cshtml b/src/Umbraco.Web.UI/Views/Partials/Grid/Editors/Embed.cshtml index 393157bcf8..866d3d2bdd 100644 --- a/src/Umbraco.Web.UI/Views/Partials/Grid/Editors/Embed.cshtml +++ b/src/Umbraco.Web.UI/Views/Partials/Grid/Editors/Embed.cshtml @@ -1,7 +1,14 @@ @model dynamic @using Umbraco.Web.Templates - +@{ + var embedValue = string.Empty; + try { + embedValue = Model.value.preview; + } catch(Exception ex) { + embedValue = Model.value; + } +}