Skip to content

Commit

Permalink
Fix incorrect content in fields on redirect edit
Browse files Browse the repository at this point in the history
Fixes #309, #314
  • Loading branch information
Tam committed Jun 24, 2020
1 parent 33c5274 commit f2de784
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 3.6.5.2 - 2020-6-24
### Fixed
- Fix incorrect content in fields on redirect edit (Fixes #309, #314)

## 3.6.5.1 - 2020-05-22
### Fixed
- Fix missing order column install issue (Fixes #303)
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "ether/seo",
"license": "MIT",
"description": "SEO utilities including a unique field type, sitemap, & redirect manager",
"version": "3.6.5.1",
"version": "3.6.5.2",
"type": "craft-plugin",
"minimum-stability": "dev",
"require": {
Expand Down
7 changes: 6 additions & 1 deletion resources/js/settings/Redirects.js
Original file line number Diff line number Diff line change
Expand Up @@ -386,7 +386,7 @@ export default class Redirects {
return row;
}

rowEdit (id, uri, to, type) {
rowEdit (id, order, uri, to, type) {
return [
c("tr", { "class": "redirects--edit-row" }, [
// URI
Expand All @@ -396,6 +396,11 @@ export default class Redirects {
"type": "hidden",
"name": this.namespaceField("id")
}),
c("input", {
"value": order,
"type": "hidden",
"name": this.namespaceField("order")
}),
c("input", {
"value": uri,
"type": "text",
Expand Down
2 changes: 1 addition & 1 deletion src/web/assets/js/SeoSettings.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/web/assets/js/SeoSettings.min.js.map

Large diffs are not rendered by default.

0 comments on commit f2de784

Please sign in to comment.