Skip to content

Commit 0261ccb

Browse files
authored
Fixes conflicting shortcut keys (#2420)
1 parent 32e3fab commit 0261ccb

File tree

2 files changed

+2
-2
lines changed
  • apps/webapp/app
    • components
    • routes/resources.orgs.$organizationSlug.projects.$projectParam.env.$envParam.runs.$runParam.spans.$spanParam

2 files changed

+2
-2
lines changed

apps/webapp/app/components/Shortcuts.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ function ShortcutContent() {
123123
<ShortcutKey shortcut={{ key: "d" }} variant="medium/bright" />
124124
</Shortcut>
125125
<Shortcut name="Context">
126-
<ShortcutKey shortcut={{ key: "c" }} variant="medium/bright" />
126+
<ShortcutKey shortcut={{ key: "x" }} variant="medium/bright" />
127127
</Shortcut>
128128
<Shortcut name="Metadata">
129129
<ShortcutKey shortcut={{ key: "m" }} variant="medium/bright" />

apps/webapp/app/routes/resources.orgs.$organizationSlug.projects.$projectParam.env.$envParam.runs.$runParam.spans.$spanParam/route.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -381,7 +381,7 @@ function RunBody({
381381
onClick={() => {
382382
replace({ tab: "context" });
383383
}}
384-
shortcut={{ key: "c" }}
384+
shortcut={{ key: "x" }}
385385
>
386386
Context
387387
</TabButton>

0 commit comments

Comments
 (0)