Skip to content

Commit

Permalink
do not open the data editor by default
Browse files Browse the repository at this point in the history
  • Loading branch information
bkrmendy committed Feb 12, 2024
1 parent badb1d1 commit e6070b6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -779,7 +779,7 @@ interface RowForObjectControlProps extends AbstractRowForControlProps {
}

const RowForObjectControl = React.memo((props: RowForObjectControlProps) => {
const [open, setOpen] = React.useState(true)
const [open, setOpen] = React.useState(false)
const handleOnClick = React.useCallback(() => {
if (!props.disableToggling) {
setOpen(!open)
Expand Down

0 comments on commit e6070b6

Please sign in to comment.