allow null as we need it for the scaffold

This commit is contained in:
Mads Rasmussen
2024-05-01 14:11:36 +02:00
parent 0a7cbd1fed
commit e6138ee4a7

View File

@@ -5,7 +5,7 @@ export interface UmbDataTypeDetailModel {
unique: string;
name: string;
editorAlias: string | undefined;
editorUiAlias: string;
editorUiAlias: string | null;
values: Array<UmbDataTypePropertyModel>;
}