File tree Expand file tree Collapse file tree 1 file changed +8
-12
lines changed
extensions/ql-vscode/src/view/common Expand file tree Collapse file tree 1 file changed +8
-12
lines changed Original file line number Diff line number Diff line change @@ -55,18 +55,14 @@ interface DataGridRowProps {
5555}
5656
5757export const DataGridRow = forwardRef (
58- ( props : DataGridRowProps , ref ?: React . Ref < HTMLElement | undefined > ) => {
59- const { focused, children } = props ;
60- return (
61- < StyledDataGridRow
62- $focused = { focused }
63- ref = { ref }
64- data-testid = { props [ "data-testid" ] }
65- >
66- { children }
67- </ StyledDataGridRow >
68- ) ;
69- } ,
58+ (
59+ { focused, children, "data-testid" : testId } : DataGridRowProps ,
60+ ref ?: React . Ref < HTMLElement | undefined > ,
61+ ) => (
62+ < StyledDataGridRow $focused = { focused } ref = { ref } data-testid = { testId } >
63+ { children }
64+ </ StyledDataGridRow >
65+ ) ,
7066) ;
7167DataGridRow . displayName = "DataGridRow" ;
7268
You can’t perform that action at this time.
0 commit comments