Skip to content

Commit 4ab7ea4

Browse files
committed
Fix: filter overlap on table header app list
1 parent d0a3fd2 commit 4ab7ea4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/components/app/list-new/AppList.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1083,13 +1083,13 @@ export default function AppList({ isSuperAdmin, appListCount, isArgoInstalled }:
10831083
}
10841084

10851085
return (
1086-
<>
1086+
<div>
10871087
<HeaderWithCreateButton headerName="Applications" isSuperAdmin={isSuperAdmin} />
10881088
{renderMasterFilters()}
10891089
{renderAppliedFilters()}
10901090
{renderAppTabs()}
10911091
{serverMode === SERVER_MODE.FULL && renderAppCreateRouter()}
10921092
{renderAppListBody()}
1093-
</>
1093+
</div>
10941094
)
10951095
}

0 commit comments

Comments
 (0)