Skip to content

Commit

Permalink
Further change on new widgets zones in admin area. Fixed an issue wit…
Browse files Browse the repository at this point in the history
…h the edit plugin page
  • Loading branch information
AndreiMaz committed Oct 9, 2017
1 parent 35921dd commit e7fb942
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Expand Up @@ -20,7 +20,7 @@
<i class="fa fa-floppy-o"></i>
@T("Admin.Common.Save")
</button>
@await Component.InvokeAsync("AdminWidget", new { widgetZone = "admin_plugin_details_buttons", additionalData = Model.Id })
@await Component.InvokeAsync("AdminWidget", new { widgetZone = "admin_plugin_details_buttons", additionalData = Model.SystemName })
</div>
</div>
@await Html.PartialAsync("_CreateOrUpdatePlugin", Model)
Expand Down
Expand Up @@ -15,7 +15,7 @@
<div class="content">
<div class="form-horizontal">
<div class="panel-group">
@await Component.InvokeAsync("AdminWidget", new { widgetZone = "admin_plugin_details_top", additionalData = Model.Id })
@await Component.InvokeAsync("AdminWidget", new { widgetZone = "admin_plugin_details_top", additionalData = Model.SystemName })
<div class="panel panel-default panel-popup">
<div class="panel-body">
@(Html.LocalizedEditor<PluginModel, PluginLocalizedModel>("plugin-localized",
Expand Down Expand Up @@ -133,7 +133,7 @@
</div>
</div>
</div>
@await Component.InvokeAsync("AdminWidget", new { widgetZone = "admin_plugin_details_bottom", additionalData = Model.Id })
@await Component.InvokeAsync("AdminWidget", new { widgetZone = "admin_plugin_details_bottom", additionalData = Model.SystemName })
</div>
</div>
</div>

0 comments on commit e7fb942

Please sign in to comment.