Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
# 0.19.1 <small>2026-04-28</small>

## 🐛 Bug Fixes
- Remove dependency on location partial so a task using the shared form control doesn't error out when handling hidden fields.

<!-- CHANGELOG_BOUNDARY -->

# 0.19.0 <small>2026-04-26</small>

## 🚀 Features
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
<TargetFramework>net10.0</TargetFramework>
<AddRazorSupportForMvc>true</AddRazorSupportForMvc>
<RootNamespace>TransformalizeModule</RootNamespace>
<Version>0.19.0</Version>
<FileVersion>0.19.0</FileVersion>
<AssemblyVersion>0.19.0</AssemblyVersion>
<Version>0.19.1</Version>
<FileVersion>0.19.1</FileVersion>
<AssemblyVersion>0.19.1</AssemblyVersion>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Authors>Dale Newman</Authors>
<Copyright>Copyright © 2013-2026</Copyright>
Expand Down
21 changes: 0 additions & 21 deletions src/OrchardCore.Transformalize/Views/Form/Location.cshtml

This file was deleted.

4 changes: 3 additions & 1 deletion src/OrchardCore.Transformalize/Views/Shared/Form.cshtml
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,9 @@

if (!parameter.Raw && !parameter.Input || parameter.PrimaryKey || parameter.InputType == "location" || parameter.Visible == "false") {
<input type="hidden" name="@parameter.Name" value="@parameter.Value" id="id_@parameter.Name" />
Html.RenderPartial("Location", parameter);
@if (parameter.InputType == "location") {
<script>$(function () { settings.location.@parameter.InputCapture = $("@("#id_" + parameter.Name)"); });</script>
}
continue;
}

Expand Down
Loading