You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Pressing Tab or Shift+Tab in a table cell moves browser focus out of the editor instead of navigating horizontally. The editor selection remains in the original cell.
Current origin/main is 45116fd. Its table keydown handler has no Tab/Shift+Tab path, matching the deployed behavior. next routes these keys through update.tab(), but the homepage still loses focus.
CleanShot.2026-08-04.at.17.18.46.mp4
Pressing Tab or Shift+Tab in a table cell moves browser focus out of the editor instead of navigating horizontally. The editor selection remains in the original cell.
This reproduces on both current surfaces:
Current origin/main is 45116fd. Its table keydown handler has no Tab/Shift+Tab path, matching the deployed behavior. next routes these keys through update.tab(), but the homepage still loses focus.
Expected behavior
Tab moves to the next table cell and Shift+Tab moves to the previous cell. Notion documents horizontal Tab navigation for simple tables: https://www.notion.com/en-gb/help/guides/simple-tables-vs-databases
Reproduction
Actual: focus moves to an editor UI button while the native selection stays in the same cell. No console errors are emitted.
Regression context: #1793 described the same focus-leaving behavior and was closed as completed; #413 originally added Tab/Shift+Tab table navigation.
Video is attached above.