diff --git a/app/templates/components/data-table-row-current.hbs b/app/templates/components/data-table-row-current.hbs index fef354b1..43608997 100644 --- a/app/templates/components/data-table-row-current.hbs +++ b/app/templates/components/data-table-row-current.hbs @@ -1,4 +1,4 @@ -{{#unless this.rowConfig.divider}} +{{#unless (or this.rowConfig.divider (not this.rowConfig.data))}} {{this.rowConfig.title}} @@ -126,13 +126,22 @@ {{else}} -   -   -   - {{#if this.reliability}} -   + {{#if (not this.rowConfig.data)}} + {{!-- If a row header, display title --}} + + + {{this.rowConfig.title}} + + + {{else}}   +     + {{#if this.reliability}} +   +   +   + {{/if}} {{/if}}   @@ -150,5 +159,10 @@   {{/if}} + {{#if (not this.rowConfig.data)}} +   +   + {{/if}} + {{/unless}} {{yield}}