Skip to content

Commit

Permalink
feat: Use Enter key to edit cell content in data browser (#2672)
Browse files Browse the repository at this point in the history
  • Loading branch information
mtrezza authored Mar 9, 2025
1 parent d80c151 commit ac2dc41
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/dashboard/Data/Browser/DataBrowser.react.js
Original file line number Diff line number Diff line change
Expand Up @@ -428,6 +428,12 @@ export default class DataBrowser extends React.Component {
e.preventDefault();
}
break;
case 13: // Enter (enable editing)
if (!this.state.editing && this.state.current) {
this.setEditing(true);
e.preventDefault();
}
break;
}
}

Expand Down

0 comments on commit ac2dc41

Please sign in to comment.