From 6cc858a9869cfc7686cbce460f6e124ed70197a6 Mon Sep 17 00:00:00 2001 From: Argo-Asicotech Date: Wed, 4 Jan 2023 22:17:07 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8D=E5=88=97=E8=B0=83?= =?UTF-8?q?=E6=95=B4=E5=AE=BD=E5=BA=A6=E6=8A=A5=E9=94=99=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 列开启过滤条件有时间过滤条件 --- src/BootstrapBlazor/wwwroot/modules/table.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/BootstrapBlazor/wwwroot/modules/table.js b/src/BootstrapBlazor/wwwroot/modules/table.js index 07513d9ff..b9e454c99 100644 --- a/src/BootstrapBlazor/wwwroot/modules/table.js +++ b/src/BootstrapBlazor/wwwroot/modules/table.js @@ -121,7 +121,7 @@ export class Table extends BlazorComponent { else th.classList.remove('border-resize') const index = [].indexOf.call(th.parentNode.children, th); - th.closest('.table-resize').querySelectorAll('tbody tr').forEach(tr => { + th.closest('.table-resize').querySelectorAll('.table > tbody > tr').forEach(tr => { const td = tr.children.item(index) if (toggle) td.classList.add('border-resize') else td.classList.remove('border-resize') -- Gitee