mirror of
https://github.com/Ed1s0nZ/CyberStrikeAI.git
synced 2026-07-14 16:07:34 +02:00
Add files via upload
This commit is contained in:
@@ -2614,11 +2614,16 @@ function renderMonitorExecutions(executions = [], statusFilter = 'all') {
|
|||||||
})
|
})
|
||||||
.join('');
|
.join('');
|
||||||
|
|
||||||
// 先移除旧的表格容器(保留分页控件)
|
// 先移除旧的表格容器和加载提示(保留分页控件)
|
||||||
const oldTableContainer = container.querySelector('.monitor-table-container');
|
const oldTableContainer = container.querySelector('.monitor-table-container');
|
||||||
if (oldTableContainer) {
|
if (oldTableContainer) {
|
||||||
oldTableContainer.remove();
|
oldTableContainer.remove();
|
||||||
}
|
}
|
||||||
|
// 清除"加载中..."等提示信息
|
||||||
|
const oldEmpty = container.querySelector('.monitor-empty');
|
||||||
|
if (oldEmpty) {
|
||||||
|
oldEmpty.remove();
|
||||||
|
}
|
||||||
|
|
||||||
// 创建表格容器
|
// 创建表格容器
|
||||||
const tableContainer = document.createElement('div');
|
const tableContainer = document.createElement('div');
|
||||||
|
|||||||
Reference in New Issue
Block a user