Skip to content
Open
Show file tree
Hide file tree
Changes from 2 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
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ ENHANCEMENTS:
* _No changes yet_

BUG FIXES:
* _No changes yet_
* Fix uiSchema.overview params overwritten by ui

Comment thread
JC-wk marked this conversation as resolved.
## 0.27.0 (February 5, 2026)
**BREAKING CHANGES**
Expand Down
2 changes: 1 addition & 1 deletion ui/app/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "tre-ui",
"version": "0.8.25",
"version": "0.8.26",
"private": true,
"type": "module",
"dependencies": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,7 @@ export const ResourceForm: React.FunctionComponent<ResourceFormProps> = (
// use the supplied uiSchema or create a blank one, and set the overview field to textarea manually.
const uiSchema = (template && template.uiSchema) || {};
uiSchema.overview = {
...uiSchema.overview,
"ui:widget": "textarea",
};

Expand Down
Loading