fixes images not showing up when rendering rte from the grid.
This commit is contained in:
@@ -1,5 +1,9 @@
|
|||||||
@model dynamic
|
@model dynamic
|
||||||
@using Umbraco.Web.Composing
|
@using Umbraco.Web.Composing
|
||||||
@using Umbraco.Web.Templates
|
@using Umbraco.Web.Templates
|
||||||
|
@{
|
||||||
@Html.Raw(TemplateUtilities.ParseInternalLinks(Model.value.ToString(), Current.UmbracoContext.UrlProvider))
|
var value = TemplateUtilities.ParseInternalLinks(Model.value.ToString(), Current.UmbracoContext.UrlProvider);
|
||||||
|
value = TemplateUtilities.ResolveUrlsFromTextString(value);
|
||||||
|
value = TemplateUtilities.ResolveMediaFromTextString(value);
|
||||||
|
}
|
||||||
|
@Html.Raw(value)
|
||||||
|
|||||||
Reference in New Issue
Block a user