I have this div
<td><a *ngIf="data?.URL; else noData" [href]="data?.URL" target="_blank">View
File</a>
<ng-template #noData>
<span> No File</span>
</ng-template>
</td>
in some cases data.URL is null URL: "null" and else there will be file url but in my component in all case View File is displayed.
another issue is I have url like this https://egdomain/download_.jpg i want to display only the file in the link not the full url like download_.jpg
Any solution to fix this issue