Update upload.component.html

- Hide status URL
This commit is contained in:
Max W. 2024-02-21 22:32:01 +01:00
parent 5956849a49
commit b331ccfbe3

View File

@ -63,7 +63,7 @@
<div class="flex flex-wrap mt-5 mb-5" *ngIf="uploadData && fileUrls">
<div class="w-full px-4">
<div class="grid grid-cols-1 md:grid-cols-2 gap-4 items-center">
<div class="text-gray-600 lg:text-right">File Name:</div>
<div class="text-gray-600 lg:text-right">File name:</div>
<div>{{uploadData.fileName}}</div>
<div class="text-gray-600 lg:text-right mt-1 lg:mt-0">Is password protected:</div>
@ -77,7 +77,7 @@
<input type="checkbox" class="checkbox checkbox-primary" [checked]="uploadData.singleDownload" (click)="$event.preventDefault()"/>
<span>{{uploadData.singleDownload ? 'Yes' : 'No'}}</span>
</label>
<div class="text-gray-600 lg:text-right mt-1 lg:mt-0">Download Password:</div>
<div class="text-gray-600 lg:text-right mt-1 lg:mt-0">Download password:</div>
<div>{{uploadData.password || 'N/A'}}</div>
<div class="text-gray-600 lg:text-right mt-1 lg:mt-0">File ID:</div>
@ -86,8 +86,12 @@
<div class="text-gray-600 lg:text-right mt-1 lg:mt-0">Download URL:</div>
<div><a href="{{fileUrls.downloadUrl}}" target="_blank">{{fileUrls.downloadUrl}}</a></div>
<!--
Currently disabled because the status page is not available yet
<div class="text-gray-600 lg:text-right mt-1 lg:mt-0">File Status URL:</div>
<div><a href="{{fileUrls.statusUrl}}" target="_blank">{{fileUrls.statusUrl}}</a></div>
-->
</div>
</div>
</div>