Skip to content

Commit 1c70a25

Browse files
committed
Update render view
1 parent 5702f90 commit 1c70a25

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

src/Umbraco.Cms.Integrations.Crm.Dynamics/App_Plugins/UmbracoCms.Integrations/Crm/Dynamics/Render/DynamicsForm.cshtml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
@using Umbraco.Cms.Integrations.Crm.Dynamics.Models.ViewModels;
2+
@using Umbraco.Cms.Integrations.Crm.Dynamics.Models;
23

34
@inherits Umbraco.Cms.Web.Common.Views.UmbracoViewPage<FormViewModel>
45

56
@{
67
var id = Guid.NewGuid();
78
}
89

9-
@if (Model.Module == Umbraco.Cms.Integrations.Crm.Dynamics.Models.DynamicsModule.Outbound)
10+
@if (Model.Module == DynamicsModule.Outbound)
1011
{
1112
@if (Model.IframeEmbedded)
1213
{

src/Umbraco.Cms.Integrations.Crm.Dynamics/App_Plugins/UmbracoCms.Integrations/Crm/Dynamics/Render/DynamicsFormV8.cshtml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
@using Umbraco.Cms.Integrations.Crm.Dynamics.Models.ViewModels;
2+
@using Umbraco.Cms.Integrations.Crm.Dynamics.Models;
23

3-
@inherits Umbraco.Web.Mvc.UmbracoViewPage<FormViewModel>
4+
@inherits Umbraco.Cms.Web.Common.Views.UmbracoViewPage<FormViewModel>
45

56
@{
67
var id = Guid.NewGuid();
78
}
89

9-
@if (Model.Module == Umbraco.Cms.Integrations.Crm.Dynamics.Models.DynamicsModule.Outbound)
10+
@if (Model.Module == DynamicsModule.Outbound)
1011
{
1112
@if (Model.IframeEmbedded)
1213
{
@@ -36,4 +37,4 @@ else
3637
{
3738
@Html.Raw(Model.Html)
3839
}
39-
}
40+
}

0 commit comments

Comments
 (0)