Skip to content

Commit

Permalink
Merge branch 'develop' into feature/multifield-textarea
Browse files Browse the repository at this point in the history
  • Loading branch information
stefanseifert committed Sep 25, 2024
2 parents 18f3a82 + 6bbdc0a commit dc58338
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
const currentController = current?.$$route?.controller;
const currentConfigName = current?.pathParams?.configName;
const nextController = next?.$$route?.controller;
const nextConfigName = current?.pathParams?.configName;
const nextConfigName = next?.pathParams?.configName;
return currentController !== undefined && currentController === nextController && currentConfigName === nextConfigName;
}

Expand Down
3 changes: 3 additions & 0 deletions changes.xml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,9 @@
<action type="fix" dev="sseifert" issue="44">
Textarea widget: Apply custom number of rows also in readonly/disabled state.
</action>
<action type="fix" dev="sseifert" issue="45">
Fix non-working edit button for nested configurations (Regression from version 1.16.2).
</action>
</release>

<release version="1.16.4" date="2024-08-26">
Expand Down

0 comments on commit dc58338

Please sign in to comment.