added experiment-table: refactored all frontend pages and services

This commit is contained in:
averel10
2026-03-20 06:51:49 +01:00
parent 5464eae0e9
commit 4b35e2392e
13 changed files with 1598 additions and 51 deletions

View File

@@ -9,11 +9,13 @@ export const DIALECT_LABELS: Record<string, string> = {
de: 'Deutsch',
};
export type AnnotationEntry = {
export type DatasetEntryForAnnotation = {
id: number;
externalId: string;
fileName: string;
dialect: string;
durationMs: number | null;
datasetId: number;
experimentId: number;
annotation: number | null;
};