Skip to content

Commit

Permalink
fix(module:table): missing no-result in fixed header table
Browse files Browse the repository at this point in the history
  • Loading branch information
vmural committed Jun 8, 2024
1 parent 843b703 commit 5016211
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions components/table/src/table/table-fixed-row.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,12 +32,15 @@ import { NzTableStyleService } from '../table-style.service';
style="position: sticky; left: 0; overflow: hidden;"
[style.width.px]="hostWidth$ | async"
>
<ng-content></ng-content>
<ng-template [ngTemplateOutlet]="contentTemplate"></ng-template>
</div>
} @else {
<ng-content></ng-content>
<ng-template [ngTemplateOutlet]="contentTemplate"></ng-template>
}
</td>
<ng-template #contentTemplate>
<ng-content></ng-content>
</ng-template>
`,
imports: [AsyncPipe, NgTemplateOutlet],
standalone: true
Expand Down

0 comments on commit 5016211

Please sign in to comment.