Change file names to file 1,2,3.. for now (#1360)

This commit is contained in:
Shuchang Zheng
2024-12-09 05:28:49 -08:00
committed by GitHub
parent 4a422766d7
commit 3e480ddc62

View File

@@ -635,12 +635,12 @@ function WorkflowRun() {
</header> </header>
<div className="space-y-2"> <div className="space-y-2">
{fileUrls.length > 0 ? ( {fileUrls.length > 0 ? (
fileUrls.map((url) => { fileUrls.map((url, index) => {
return ( return (
<div key={url} className="flex gap-2"> <div key={url} title={url} className="flex gap-2">
<FileIcon className="size-6" /> <FileIcon className="size-6" />
<a href={url} className="underline underline-offset-4"> <a href={url} className="underline underline-offset-4">
<span>{url}</span> <span>{`File ${index + 1}`}</span>
</a> </a>
</div> </div>
); );