File tree Expand file tree Collapse file tree 1 file changed +3
-6
lines changed
client/packages/lowcoder/src/comps/comps/tableComp Expand file tree Collapse file tree 1 file changed +3
-6
lines changed Original file line number Diff line number Diff line change @@ -793,18 +793,15 @@ export const TableToolbar = memo(function TableToolbar(props: {
793793
794794 const handleDownload = useCallback ( ( ) => {
795795 onDownload ( ) ;
796- onEvent ( "download" ) ;
797- } , [ onDownload , onEvent ] ) ;
796+ } , [ onDownload ] ) ;
798797
799798 const handleSaveChanges = useCallback ( ( ) => {
800799 onSaveChanges ( ) ;
801- onEvent ( "saveChanges" ) ;
802- } , [ onSaveChanges , onEvent ] ) ;
800+ } , [ onSaveChanges ] ) ;
803801
804802 const handleCancelChanges = useCallback ( ( ) => {
805803 onCancelChanges ( ) ;
806- onEvent ( "cancelChanges" ) ;
807- } , [ onCancelChanges , onEvent ] ) ;
804+ } , [ onCancelChanges ] ) ;
808805
809806 const handleColumnFilterChange = useCallback ( ( filters : TableFilterDataType [ ] , stackType : TableFilter [ "stackType" ] ) => {
810807 if (
You can’t perform that action at this time.
0 commit comments