From e5f3aef8e5aee70788720ec91ab76da2a2b1d2f5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=85=AC=E6=98=8E?= <83812544+Ed1s0nZ@users.noreply.github.com> Date: Sun, 16 Nov 2025 22:19:18 +0800 Subject: [PATCH] Add files via upload --- web/static/js/app.js | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/web/static/js/app.js b/web/static/js/app.js index 43750f47..e0c14ece 100644 --- a/web/static/js/app.js +++ b/web/static/js/app.js @@ -2614,11 +2614,16 @@ function renderMonitorExecutions(executions = [], statusFilter = 'all') { }) .join(''); - // 先移除旧的表格容器(保留分页控件) + // 先移除旧的表格容器和加载提示(保留分页控件) const oldTableContainer = container.querySelector('.monitor-table-container'); if (oldTableContainer) { oldTableContainer.remove(); } + // 清除"加载中..."等提示信息 + const oldEmpty = container.querySelector('.monitor-empty'); + if (oldEmpty) { + oldEmpty.remove(); + } // 创建表格容器 const tableContainer = document.createElement('div');