Skip to content

Commit

Permalink
Fixes empty works table
Browse files Browse the repository at this point in the history
The works table was not showing any information as it missed the
mat-row component, accidentally removed when the table was
reformatted.

This commit fixes this error and now data is correctly displayed.
  • Loading branch information
mrjato committed Apr 26, 2022
1 parent 08a03ee commit e101b4c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@evoppi/frontend",
"version": "2.1.0-alpha.28",
"version": "2.1.0-alpha.29",
"description": "EvoPPI - Evolutionary Protein-Protein Interactions",
"license": "GPL-3.0",
"author": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ <h4 class="card-title">Works</h4>
matSortDirection="desc">
<mat-header-row *matHeaderRowDef="columns" class="header-row"></mat-header-row>
<mat-header-row *matHeaderRowDef="columnFilters" class="filters-row"></mat-header-row>
<mat-row *matRowDef="let work; columns: columns;"></mat-row>

<ng-container matColumnDef="NAME">
<mat-header-cell *matHeaderCellDef mat-sort-header>Name</mat-header-cell>
Expand Down

0 comments on commit e101b4c

Please sign in to comment.