Setting allowUseFirstRowAsHeader doesn't yield checkbox in editor
Closed this issue · 2 comments
craigagnew commented
Summary
When configuring the Limbo Tables data type in Umbraco, when only allowUseFirstRowAsHeader
is set the toolbar containing these options in the Property Editor is not shown.
Version
1.1.1
Steps to reproduce
- Install the package to an Umbraco instance
- Configure the Data Type for Limbo Tables to only have "Allow 'Use first row as header' option" checked
- Add as property of a content type
- Edit the content type in the content section
- Observe that the toolbar doesn't display
Screenshots
Expected behaviour
Setting only this option yields the "Use first row as header" option in the property editor
System info
Umbraco v10.7.0
abjerner commented
@craigagnew thanks for reporting 👍
The Angular view for the property editor had a check for vm.vm.allowUseFirstRowAsHeader
, which should instead be just vm.allowUseFirstRowAsHeader
. Unfortunately I hadn't spotted this when testing the package.
I've pushed a new release that fixes this: https://github.com/limbo-works/Limbo.Umbraco.Tables/releases/tag/v1.1.2
craigagnew commented
Awesome, thanks @abjerner!