Skip to content

Commit

Permalink
small fix
Browse files Browse the repository at this point in the history
  • Loading branch information
oeway committed Nov 26, 2024
1 parent be5a752 commit f1c0996
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hypha/templates/ws/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -765,7 +765,7 @@ <h2 className="text-2xl font-bold text-white">Artifact Details</h2>
<h3 className="text-lg font-bold">Files:</h3>
<ul className="list-disc list-inside text-gray-300 mt-2">
{files.map((file) => (
<li key={file.name} className="break-all flex items-center justify-between">
<li key={file.name} className="break-all flex mb-1 items-center justify-between">
<span><i className={`fas ${file.type==='directory' ? 'fa-folder' : 'fa-file-alt'} mr-2`}></i>{file.name}</span>
{file.type === "file" && (
<div className="flex space-x-2">
Expand Down

0 comments on commit f1c0996

Please sign in to comment.