mirror of
https://github.com/zadam/trilium.git
synced 2024-11-11 18:08:13 +08:00
fix sizing of the attribute detail in inherited attribute list
This commit is contained in:
parent
da74272f13
commit
4b1678c416
1 changed files with 4 additions and 1 deletions
|
@ -34,7 +34,10 @@ export default class InheritedAttributesWidget extends NoteContextAwareWidget {
|
|||
super();
|
||||
|
||||
/** @type {AttributeDetailWidget} */
|
||||
this.attributeDetailWidget = new AttributeDetailWidget().setParent(this);
|
||||
this.attributeDetailWidget = new AttributeDetailWidget()
|
||||
.contentSized()
|
||||
.setParent(this);
|
||||
|
||||
this.child(this.attributeDetailWidget);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue