|
@@ -68,7 +68,7 @@ public static class EventActionEditors
|
|
|
where TDataModel : IEventDataModel
|
|
|
{
|
|
|
var editorType = GetActionEditorType(action.GetType());
|
|
|
- if (editorType is null) return false;
|
|
|
+ if (editorType is null) return true;
|
|
|
|
|
|
var editor = (Activator.CreateInstance(editorType) as IEventActionEditor)!;
|
|
|
return editor.Edit(action, dataModelDefinition);
|