Skip to content

Commit

Permalink
PullRequest: 497 fix/dev-4.3.1-objectSearch
Browse files Browse the repository at this point in the history
Merge branch 'fix/dev-4.3.1-objectSearch of [email protected]:oceanbase/oceanbase-developer-center.git into dev-4.3.1

https://code.alipay.com/oceanbase/oceanbase-developer-center/pull_requests/497


Signed-off-by: 晓康 <[email protected]>


* fix: fixes all tab empty problem when response just have databases data
  • Loading branch information
yezaoshu committed Aug 8, 2024
1 parent 94e3ebb commit 1b3fabb
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,9 @@ const ObjectList = ({
const renderAllTab = () => {
return (
<Spin spinning={loading}>
{!objectlist?.dbColumns?.length && !objectlist?.dbObjects?.length ? (
{!objectlist?.dbColumns?.length &&
!objectlist?.dbObjects?.length &&
!objectlist?.databases?.length ? (
<div className={styles.objectlistBoxEmpty}>
<Empty
description={formatMessage({
Expand Down

0 comments on commit 1b3fabb

Please sign in to comment.