Skip to content
Snippets Groups Projects
Commit cbecaccc authored by François Agneray's avatar François Agneray
Browse files

Fixed bug: datatable display value is null

parent 6f91fe15
No related branches found
No related tags found
1 merge request!29Develop
...@@ -40,7 +40,7 @@ ...@@ -40,7 +40,7 @@
</button> </button>
</td> </td>
<td *ngFor="let attribute of getOutputList()" class="align-middle"> <td *ngFor="let attribute of getOutputList()" class="align-middle">
<div [ngSwitch]="attribute.renderer"> <div *ngIf="datum[attribute.label]" [ngSwitch]="attribute.renderer">
<div *ngSwitchCase="'detail'"> <div *ngSwitchCase="'detail'">
<app-detail-renderer <app-detail-renderer
[value]="datum[attribute.label]" [value]="datum[attribute.label]"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment