这是indexloc提供的服务,不要输入任何密码
Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ The order and collapsed state of columns is now persisted across page navigation
- console: fix clone permission migrations (close #3985) (#4277)
- console: decouple data rows and count fetch in data browser to account for really large tables (close #3793) (#4269)
- console: update cookie policy for API calls to "same-origin"
- console: redirect to /:table/browse from /:table (close #4330) (#4374)
- docs: add One-Click Render deployment guide (close #3683) (#4209)
- server: reserved keywords in column references break parser (fix #3597) #3927
- server: fix postgres specific error message that exposed database type on invalid query parameters (#4294)
Expand Down
7 changes: 5 additions & 2 deletions console/src/components/Services/Data/DataRouter.js
Original file line number Diff line number Diff line change
Expand Up @@ -65,9 +65,12 @@ const makeDataRouter = (
<Route path="permissions" component={PermissionCustomFunction} />
</Route>
<Route
path=":schema/tables/:table/browse"
path=":schema/tables/:table"
component={viewTableConnector(connect)}
/>
>
<IndexRedirect to="browse" />
<Route path="browse" component={viewTableConnector(connect)} />
</Route>
<Route
path=":schema/tables/:table/edit"
component={editItemConnector(connect)}
Expand Down