fix: Add display name to components so it doesn't show as anonymous (#5616)

This commit is contained in:
Aakansha Doshi 2022-08-26 11:46:19 +05:30 committed by GitHub
parent 720f468f39
commit 43b13d8e3a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 6 additions and 1 deletions

View file

@ -147,6 +147,7 @@ export class ActionManager {
) {
const action = this.actions[name];
const PanelComponent = action.PanelComponent!;
PanelComponent.displayName = "PanelComponent";
const elements = this.getElementsIncludingDeleted();
const appState = this.getAppState();
const updateData = (formState?: any) => {