Skip to content

Commit

Permalink
CI fix
Browse files Browse the repository at this point in the history
  • Loading branch information
bastiion committed Jun 10, 2024
1 parent ccc0e28 commit e83c59a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import {
CombinatorKeyword,
createCombinatorRenderInfos,
JsonSchema,
OwnPropsOfControl,
resolveSchema,
StatePropsOfCombinator,
} from "@jsonforms/core";
Expand Down Expand Up @@ -93,6 +94,8 @@ const MaterialCustomAnyOfRendererComponent = ({
);
};

export const MaterialCustomAnyOfRenderer = withJsonFormsAnyOfProps(
export const MaterialCustomAnyOfRenderer:
| React.ComponentClass<OwnPropsOfControl>
| React.FunctionComponent<OwnPropsOfControl> = withJsonFormsAnyOfProps(
MaterialCustomAnyOfRendererComponent,
);
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ const MarkdownTextFieldRendererComponent = (props: ControlProps) => {
};

export const MarkdownTextFieldRenderer:
| React.ComponentClass<OwnPropsOfControl>
| React.FunctionComponent<OwnPropsOfControl> = withJsonFormsControlProps(
| React.ComponentClass<any>
| React.FunctionComponent<any> = withJsonFormsControlProps(
MarkdownTextFieldRendererComponent,
);

0 comments on commit e83c59a

Please sign in to comment.