Skip to content

Commit

Permalink
Cleaning up editor to hotfix
Browse files Browse the repository at this point in the history
  • Loading branch information
balbatross committed Nov 8, 2023
1 parent ac66ded commit 5da2981
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion packages/core-ui/command-ui/src/template-input/input.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,16 @@ export const BaseInput = (props: any) => {
)
}

export const BaseTemplateInput = (props: any) => {
export interface BaseTemplateInputProps {
options: any;

value?: string;

onFocus?: (focus: boolean) => void;
onChange?: (e: string) => void;
}

export const BaseTemplateInput : React.FC<BaseTemplateInputProps> = (props) => {
const editor = useRef<HTMLDivElement>();

return (
Expand Down

0 comments on commit 5da2981

Please sign in to comment.