diff --git a/src/components/ModForm.tsx b/src/components/ModForm.tsx
index b9a476f..1d17a72 100644
--- a/src/components/ModForm.tsx
+++ b/src/components/ModForm.tsx
@@ -524,6 +524,7 @@ export const ModForm = () => {
type DownloadUrlFieldsProps = {
index: number
url: string
+ title?: string
hash: string
signatureKey: string
malwareScanLink: string
@@ -537,6 +538,7 @@ const DownloadUrlFields = React.memo(
({
index,
url,
+ title,
hash,
signatureKey,
malwareScanLink,
@@ -579,6 +581,28 @@ const DownloadUrlFields = React.memo(
+
)}
{mod.downloadUrls.length > 1 && (
- <>
-
-
-
-
- {mod.downloadUrls
- .slice(1)
- .map((download, index) => (
-
- ))}
-
- >
+
+ {mod.downloadUrls
+ .slice(1)
+ .map((download, index) => (
+
+ ))}
+
)}
@@ -608,6 +568,7 @@ const Body = ({
const Download = ({
url,
+ title,
hash,
signatureKey,
malwareScanLink,
@@ -645,6 +606,9 @@ const Download = ({
return (
+ {typeof title !== 'undefined' && title !== '' && (
+
{title}
+ )}