feat(front-end): upload only supported file and add step warning message
All checks were successful
Build, Test and Deploy / test-backend (push) Successful in 40s
Build, Test and Deploy / build-and-push (push) Successful in 24s
Build, Test and Deploy / deploy (push) Successful in 9s

This commit is contained in:
2026-02-24 13:06:16 +01:00
parent 6463fac211
commit a6eae757c5
7 changed files with 43 additions and 17 deletions

View File

@@ -10,8 +10,8 @@ import { CommonModule } from '@angular/common';
})
export class AppDropzoneComponent {
label = input<string>('Drop files here or click to upload');
subtext = input<string>('Supports .stl, .obj');
accept = input<string>('.stl,.obj');
subtext = input<string>('Supports .stl, .3mf, .step');
accept = input<string>('.stl,.3mf,.step,.stp');
multiple = input<boolean>(true);
filesDropped = output<File[]>();