{{#if this.flatPropertyList.length}}
  <ul class="mixin-properties m-0 text-base font-mono list-none">
    <ObjectInspector::SortProperties
      @properties={{this.flatPropertyList}}
      as |sortedProperties|
    >
      {{#each sortedProperties as |prop|}}
        <ObjectInspector::Property
          @calculate={{fn this.calculate prop}}
          @digDeeper={{fn this.digDeeper prop}}
          @model={{prop}}
          @saveProperty={{this.saveProperty}}
          @sendToConsole={{fn this.sendToConsole prop}}
          @gotoSource={{fn this.gotoSource prop}}
        />
      {{/each}}
    </ObjectInspector::SortProperties>
  </ul>
{{else}}
  <Ui::EmptyMessage>
    No properties found
  </Ui::EmptyMessage>
{{/if}}