Skip to content

Commit

Permalink
Merge branch 'feature/shortcut-to-diagram'
Browse files Browse the repository at this point in the history
  • Loading branch information
burnettk committed Feb 22, 2024
2 parents c5fd43e + a6f3a6a commit 666b653
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion spiffworkflow-frontend/src/routes/ProcessInstanceShow.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,11 @@ export default function ProcessInstanceShow({ variant }: OwnProps) {
const keyboardShortcuts: KeyboardShortcuts = {
'f,r,enter': {
function: forceRunProcessInstance,
label: 'Force run process instance',
label: '[F]orce [r]un process instance',
},
'd,enter': {
function: shortcutLoadPrimaryFile,
label: 'View process model [d]iagram',
},
'd,enter': {

Check failure on line 230 in spiffworkflow-frontend/src/routes/ProcessInstanceShow.tsx

View workflow job for this annotation

GitHub Actions / tests-frontend

Duplicate key 'd,enter'
function: shortcutLoadPrimaryFile,
Expand Down

0 comments on commit 666b653

Please sign in to comment.