Skip to content

Commit

Permalink
Textarea widget: Apply custom number of rows also in readonly/disable…
Browse files Browse the repository at this point in the history
…d state.
  • Loading branch information
stefanseifert committed Sep 24, 2024
1 parent 739c053 commit 2acc993
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,10 @@
</div>
<textarea is="coral-textarea" class="caconfig-if-property-not-overridden-and-not-inherited-and-not-readonly caconfig-if-config-inherited"
ng-model="property.value"
ng-attr-rows="{{textareaRows}}"
disabled readonly></textarea>
<textarea is="coral-textarea" class="caconfig-if-property-overridden-or-inherited-or-readonly"
ng-model="property.effectiveValue"
ng-attr-rows="{{textareaRows}}"
disabled readonly></textarea>
</div>
6 changes: 6 additions & 0 deletions changes.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,12 @@
xsi:schemaLocation="http://maven.apache.org/changes/1.0.0 http://maven.apache.org/plugins/maven-changes-plugin/xsd/changes-1.0.0.xsd">
<body>

<release version="1.16.6" date="not released">
<action type="fix" dev="sseifert" issue="44">
Textarea widget: Apply custom number of rows also in readonly/disabled state.
</action>
</release>

<release version="1.16.4" date="2024-08-26">
<action type="fix" dev="sseifert" issue="40">
Dropdown widget with multiple values: Preserve order of selected items when displaying configuration.
Expand Down

0 comments on commit 2acc993

Please sign in to comment.