diff --git a/src/app/core/components/public-settings/public-settings.component.ts b/src/app/core/components/public-settings/public-settings.component.ts index 74e89c8a1..f061682b9 100644 --- a/src/app/core/components/public-settings/public-settings.component.ts +++ b/src/app/core/components/public-settings/public-settings.component.ts @@ -41,7 +41,10 @@ export class PublicSettingsComponent implements OnInit { ngOnInit(): void { this.allowDownloadsToggle = +this.archive.allowPublicDownload; - this.archiveType = this.archive.type; + this.archiveType = + this.archive.type === 'type.archive.family' + ? 'type.archive.group' + : this.archive.type; } public async onAllowDownloadsChange() {