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: {
793
793
794
794
const handleDownload = useCallback ( ( ) => {
795
795
onDownload ( ) ;
796
- onEvent ( "download" ) ;
797
- } , [ onDownload , onEvent ] ) ;
796
+ } , [ onDownload ] ) ;
798
797
799
798
const handleSaveChanges = useCallback ( ( ) => {
800
799
onSaveChanges ( ) ;
801
- onEvent ( "saveChanges" ) ;
802
- } , [ onSaveChanges , onEvent ] ) ;
800
+ } , [ onSaveChanges ] ) ;
803
801
804
802
const handleCancelChanges = useCallback ( ( ) => {
805
803
onCancelChanges ( ) ;
806
- onEvent ( "cancelChanges" ) ;
807
- } , [ onCancelChanges , onEvent ] ) ;
804
+ } , [ onCancelChanges ] ) ;
808
805
809
806
const handleColumnFilterChange = useCallback ( ( filters : TableFilterDataType [ ] , stackType : TableFilter [ "stackType" ] ) => {
810
807
if (
You can’t perform that action at this time.
0 commit comments