fix sizing of the attribute detail in inherited attribute list

This commit is contained in:
zadam 2021-10-29 21:47:04 +02:00
parent da74272f13
commit 4b1678c416

View file

@ -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);
}