Skip to content
Snippets Groups Projects
Commit 3c7f5909 authored by Nathan Bockisch's avatar Nathan Bockisch
Browse files

Fix missing content bug

parent 5978e3e0
No related branches found
No related tags found
1 merge request!944Fix missing content bug
Pipeline #5247 passed
......@@ -140,7 +140,12 @@
latest version has not been submitted
</td>
<td>{{ getMetadata(request).sdm_id }}</td>
<td>{{ getMetadata(request).bands.split(' ').join(', ') }}</td>
<div *ngIf="getMetadata(request).bands; else null_bands">
<td style="border: none;">{{ getMetadata(request).bands.toString().split(' ').join(', ') }}</td>
</div>
<ng-template #null_bands>
<td>{{ getMetadata(request).bands }}</td>
</ng-template>
<td>{{ getMetadata(request).array_config }}</td>
<td>{{ getMetadata(request).obs_start_time }}</td>
<td>{{ getMetadata(request).obs_end_time }}</td>
......
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