Update TableEntity.tsx

This commit is contained in:
MokireddySampath
2023-06-27 20:30:52 +05:30
committed by GitHub
parent 1d481d1740
commit 36777b5a16

View File

@@ -34,8 +34,8 @@ export interface TableEntityProps {
isPropertyTypeDisable: boolean;
entityTimeValue: string;
isEntityValueDisable?: boolean;
onDeleteEntity: () => void;
onEditEntity: () => void;
onDeleteEntity?: () => void;
onEditEntity?: () => void;
onEntityPropertyChange: (event: React.FormEvent<HTMLElement>, newInput?: string) => void;
onEntityTypeChange: (event: React.FormEvent<HTMLElement>, selectedParam: IDropdownOption) => void;
onEntityValueChange: (event: React.FormEvent<HTMLElement>, newInput?: string) => void;