This is an automated email from the ASF dual-hosted git repository. wu-sheng pushed a commit to branch feat/explore in repository https://gitbox.apache.org/repos/asf/skywalking-horizon-ui.git
commit 868b8dec6a50dc6c290a8586f1c7c631e1605192 Author: Wu Sheng <[email protected]> AuthorDate: Tue Jun 23 20:40:51 2026 +0800 fix(inspect): MQE-target URL reads as a value, not an editable field The resolved oap.queryUrl was a read-only <code>, but its boxed background+border made it look like an editable input. Drop the field chrome so it reads as the resolved value it is. --- apps/ui/src/features/operate/inspect/InspectView.vue | 4 ---- 1 file changed, 4 deletions(-) diff --git a/apps/ui/src/features/operate/inspect/InspectView.vue b/apps/ui/src/features/operate/inspect/InspectView.vue index 4ec5fcd..6e396a3 100644 --- a/apps/ui/src/features/operate/inspect/InspectView.vue +++ b/apps/ui/src/features/operate/inspect/InspectView.vue @@ -1594,10 +1594,6 @@ function scopeShort(scope: InspectScope): string { font-family: var(--rr-font-mono); font-size: var(--sw-fs-sm); color: var(--rr-heading); - background: var(--rr-bg); - padding: 3px 8px; - border-radius: var(--rr-radius-sm); - border: 1px solid var(--rr-border); } .mqe__url--err { color: var(--rr-err); } .mqe__via { font-family: var(--rr-font-mono); font-size: var(--sw-fs-base); color: var(--rr-dim); flex: 1; }
