From e93f086485b5730f1fe9f48ac810228ccb0668e4 Mon Sep 17 00:00:00 2001 From: IanShaw027 <131567472+IanShaw027@users.noreply.github.com> Date: Thu, 15 Jan 2026 19:57:19 +0800 Subject: [PATCH] =?UTF-8?q?fix(ops):=20=E8=AF=B7=E6=B1=82=E6=97=B6?= =?UTF-8?q?=E9=95=BF=E8=AF=A6=E6=83=85=E6=98=BE=E7=A4=BA=E6=89=80=E6=9C=89?= =?UTF-8?q?=E8=AF=B7=E6=B1=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 移除请求时长卡片详情按钮的 min_duration_ms 参数限制 - 现在点击详情会显示所有请求,按时长倒序排列 - 不再只显示 P99 以上的请求 --- frontend/src/views/admin/ops/components/OpsDashboardHeader.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/views/admin/ops/components/OpsDashboardHeader.vue b/frontend/src/views/admin/ops/components/OpsDashboardHeader.vue index b36055e0..0f6d1124 100644 --- a/frontend/src/views/admin/ops/components/OpsDashboardHeader.vue +++ b/frontend/src/views/admin/ops/components/OpsDashboardHeader.vue @@ -1277,7 +1277,7 @@ function handleToolbarRefresh() { v-if="!props.fullscreen" class="text-[10px] font-bold text-blue-500 hover:underline" type="button" - @click="openDetails({ title: t('admin.ops.latencyDuration'), sort: 'duration_desc', min_duration_ms: Math.max(Number(durationP99Ms ?? 0), 0) })" + @click="openDetails({ title: t('admin.ops.latencyDuration'), sort: 'duration_desc' })" > {{ t('admin.ops.requestDetails.details') }}