Display validation errors returned by the server

This commit is contained in:
Maurus Decimus
2026-04-30 18:12:30 +02:00
parent 612fd796f3
commit ba6b4472d2
5 changed files with 29 additions and 31 deletions
+1 -1
View File
@@ -60,6 +60,6 @@ export interface JmapSetError {
export interface ValidationError {
type: 'Invalid' | 'Required' | 'MaxLength' | 'MinLength' | 'MaxValue' | 'MinValue';
property: string;
value?: unknown;
value?: string;
required?: number;
}