diff --git a/apps/frontend/src/components/ui/ProjectDownloadModal/DownloadProject.vue b/apps/frontend/src/components/ui/ProjectDownloadModal/DownloadProject.vue index 78a0a5b1c5..eeb67522fa 100644 --- a/apps/frontend/src/components/ui/ProjectDownloadModal/DownloadProject.vue +++ b/apps/frontend/src/components/ui/ProjectDownloadModal/DownloadProject.vue @@ -485,8 +485,8 @@ watch( watch( () => props.resetKey, () => { - userSelectedGameVersion.value = null - userSelectedPlatform.value = null + userSelectedGameVersion.value = props.initialGameVersion + userSelectedPlatform.value = props.initialPlatform showAllVersions.value = defaultShowAllVersions() versionFilter.value = '' }, diff --git a/apps/frontend/src/components/ui/ProjectDownloadModal/index.vue b/apps/frontend/src/components/ui/ProjectDownloadModal/index.vue index a5423594ce..27df2cd9e9 100644 --- a/apps/frontend/src/components/ui/ProjectDownloadModal/index.vue +++ b/apps/frontend/src/components/ui/ProjectDownloadModal/index.vue @@ -1,14 +1,16 @@