Skip to content

Commit

Permalink
[#2601] fix(ui): fix catalog info not found issue (#2603)
Browse files Browse the repository at this point in the history
### What changes were proposed in this pull request?

Fix catalog info not found issue

### Why are the changes needed?

Fix: #2601

### Does this PR introduce _any_ user-facing change?
N/A

### How was this patch tested?
<img width="1367" alt="image"
src="https://github.com/datastrato/gravitino/assets/9210625/183539a1-d523-42bf-b06f-f552705023d3">
  • Loading branch information
LauraXia123 authored Mar 20, 2024
1 parent be30d00 commit 336b11b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ const EmptyText = () => {
const TableView = () => {
const searchParams = useSearchParams()
const paramsSize = [...searchParams.keys()].length
const metalake = searchParams['metalake'] || ''
const metalake = searchParams.get('metalake') || ''

const defaultPaginationConfig = { pageSize: 10, page: 0 }
const pageSizeOptions = [10, 25, 50]
Expand Down

0 comments on commit 336b11b

Please sign in to comment.