mirror of
https://github.com/MHSanaei/3x-ui.git
synced 2026-08-15 15:50:59 +00:00
fix(frontend): disable table virtualization
Removes the `virtual` table option from Clients, Inbounds, and Nodes list pages. This aligns table behavior across key admin views and avoids virtualization-related rendering/interaction issues with the existing scroll and pagination setup.
This commit is contained in:
@@ -1351,7 +1351,6 @@ export default function ClientsPage() {
|
||||
pagination={tablePagination}
|
||||
size="small"
|
||||
scroll={{ x: 1200, y: 'calc(100vh - 380px)' }}
|
||||
virtual
|
||||
onChange={onTableChange}
|
||||
locale={{
|
||||
emptyText: (
|
||||
|
||||
@@ -287,7 +287,6 @@ export default function InboundList({
|
||||
}}
|
||||
pagination={paginationFor(visibleInbounds)}
|
||||
scroll={{ x: tableScrollX, y: 'calc(100vh - 320px)' }}
|
||||
virtual
|
||||
style={{ marginTop: 10 }}
|
||||
size="small"
|
||||
locale={{
|
||||
|
||||
@@ -649,7 +649,6 @@ export default function NodeList({
|
||||
pagination={false}
|
||||
loading={loading}
|
||||
scroll={{ x: 'max-content', y: 'calc(100vh - 320px)' }}
|
||||
virtual
|
||||
size="middle"
|
||||
rowKey="key"
|
||||
rowSelection={dataSource.length > 1 ? {
|
||||
|
||||
Reference in New Issue
Block a user