Skip to content
Snippets Groups Projects
Commit 48a7c66d authored by Nathan Hertz's avatar Nathan Hertz
Browse files

Fix `is_srdp` truth check in UI

parent 93c1a374
No related branches found
No related tags found
1 merge request!770Fix `is_srdp` truth check in UI
Pipeline #4278 passed
......@@ -98,7 +98,7 @@
<td>{{ getMetadata(request).obs_start_time }}</td>
<td>{{ getMetadata(request).obs_end_time }}</td>
<td>
<div *ngIf="getMetadata(request).is_srdp; else noMetadataMsg">
<div *ngIf="getMetadata(request).is_srdp !== undefined; else noMetadataMsg">
<div class="form-check" *ngIf="request.state !== 'Created'">
<input
(change)="
......
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