File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed
components/dash-table/src/dash-table/components/ControlledTable Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -244,18 +244,21 @@ export default class ControlledTable extends PureComponent<ControlledTableProps>
244
244
}
245
245
} ;
246
246
247
- handleClipboardEvent = ( event : ClipboardEvent , handler : ( e : ClipboardEvent ) => void ) => {
247
+ handleClipboardEvent = (
248
+ event : ClipboardEvent ,
249
+ handler : ( e : ClipboardEvent ) => void
250
+ ) => {
248
251
if ( this . containsActiveElement ( ) ) {
249
252
handler ( event ) ;
250
253
}
251
254
} ;
252
255
253
256
handleCopy = ( event : ClipboardEvent ) => {
254
- this . handleClipboardEvent ( event , this . onCopy )
257
+ this . handleClipboardEvent ( event , this . onCopy ) ;
255
258
} ;
256
259
257
260
handlePaste = ( event : ClipboardEvent ) => {
258
- this . handleClipboardEvent ( event , this . onPaste )
261
+ this . handleClipboardEvent ( event , this . onPaste ) ;
259
262
} ;
260
263
261
264
private clearCellWidth ( cell : HTMLElement ) {
You can’t perform that action at this time.
0 commit comments