Implement infinite scroll for logs table

This commit is contained in:
2026-07-22 21:39:47 +02:00
parent e0a4d098d9
commit 54fd8ce74c
2 changed files with 79 additions and 24 deletions
+4 -2
View File
@@ -1,4 +1,4 @@
# File: logs_view.py
# File: logs/view.py
# Copyright (C) 2026 Erick Ahmed
# SPDX-License-Identifier: AGPL-3.0-or-later
@@ -70,5 +70,7 @@ def get_logs_table_component():
'textAlign': 'center',
'fontFamily': 'Segoe UI, Arial, sans-serif'
}
)
),
html.Button("Load More", id="load-more-logs-btn", n_clicks=0, style={'display': 'none'}),
html.Div(id='dummy-output', style={'display': 'none'})
])