From a6f3a6abd2ad1dcd301135897278fd045aab92cb Mon Sep 17 00:00:00 2001 From: burnettk Date: Thu, 22 Feb 2024 10:22:59 -0500 Subject: [PATCH] give some hints for what keys --- spiffworkflow-frontend/src/routes/ProcessInstanceShow.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spiffworkflow-frontend/src/routes/ProcessInstanceShow.tsx b/spiffworkflow-frontend/src/routes/ProcessInstanceShow.tsx index b532468b3..1fd150638 100644 --- a/spiffworkflow-frontend/src/routes/ProcessInstanceShow.tsx +++ b/spiffworkflow-frontend/src/routes/ProcessInstanceShow.tsx @@ -221,11 +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 diagram', + label: 'View process model [d]iagram', }, }; const keyboardShortcutArea = useKeyboardShortcut(keyboardShortcuts);