Skip to content

Commit

Permalink
fix(occlusion): remove colspand from loader and no-data spanned rows
Browse files Browse the repository at this point in the history
Fixes #516
  • Loading branch information
buschtoens committed Nov 24, 2017
1 parent 5f6637e commit 55f5962
Showing 1 changed file with 2 additions and 11 deletions.
13 changes: 2 additions & 11 deletions addon/templates/components/lt-body.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -67,15 +67,6 @@

<table class={{tableClassNames}}>
<tbody class="lt-body">
{{#if enableScaffolding}}
<tr class="lt-scaffolding-row">
{{#each columns as |column|}}
<td
style={{html-safe (if column.width (concat 'width: ' column.width))}} class="lt-scaffolding"></td>
{{/each}}
</tr>
{{/if}}

{{#if overwrite}}
{{yield columns rows}}
{{else}}
Expand Down Expand Up @@ -103,8 +94,8 @@
doubleClick=(action 'onRowDoubleClick' row)}}
{{/vertical-collection}}
{{yield (hash
loader=(component lt.spanned-row classes='lt-is-loading' colspan=colspan)
no-data=(component lt.spanned-row classes='lt-no-data' colspan=colspan)
loader=(component lt.spanned-row classes='lt-is-loading')
no-data=(component lt.spanned-row classes='lt-no-data')
expanded-row=(component lt.spanned-row visible=false)
) rows}}
{{/if}}
Expand Down

0 comments on commit 55f5962

Please sign in to comment.