We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 538c61c commit 944cdc3Copy full SHA for 944cdc3
src/packages/data-type/workspace/data-type-workspace.context.ts
@@ -139,7 +139,9 @@ export class UmbDataTypeWorkspaceContext
139
// if the property editor ui alias is not set, we use the default alias from the schema
140
if (propertyEditorUiAlias === null) {
141
await this.#observePropertyEditorSchemaAlias();
142
- this.setPropertyEditorUiAlias(this.#propertyEditorSchemaConfigDefaultUIAlias!);
+ if (this.#propertyEditorSchemaConfigDefaultUIAlias !== null) {
143
+ this.setPropertyEditorUiAlias(this.#propertyEditorSchemaConfigDefaultUIAlias);
144
+ }
145
} else {
146
await this.#setPropertyEditorUIConfig(propertyEditorUiAlias);
147
this.setPropertyEditorSchemaAlias(this.#propertyEditorUISettingsSchemaAlias!);
0 commit comments