Skip to content

Commit

Permalink
Update CHANGELOG
Browse files Browse the repository at this point in the history
  • Loading branch information
ingalls committed Dec 9, 2024
1 parent 7b7a8ab commit d3687e0
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@

## Version History

### v3.61.1

- :bug: Ensure Data Key exists in Schema

### v3.61.0

- :rocket: Automatically Expand TablerInput on newlines
Expand Down
2 changes: 1 addition & 1 deletion components/Schema.vue
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
:label='key'
:disabled='disabled'
:required='s.properties[key].required || false'
:rows='data[key].split("\n").length'
:rows='data[key] ? data[key].split("\n").length : 1'
:description='s.properties[key].description || ""'
/>
</template>
Expand Down

0 comments on commit d3687e0

Please sign in to comment.