We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f8d4757 commit ef59eeeCopy full SHA for ef59eee
packages/core/src/stepFunctions/activation.ts
@@ -100,7 +100,14 @@ async function registerStepFunctionCommands(
100
await publishStateMachine({ awsContext: awsContext, outputChannel: outputChannel, region: region })
101
}),
102
Commands.register('aws.stepfunctions.viewExecutionDetailsByExecutionARN', async () => {
103
- await ExecutionDetailProvider.openExecutionDetails('')
+ const arn = await vscode.window.showInputBox({
104
+ prompt: 'Enter Execution ARN',
105
+ placeHolder: 'Execution ARN',
106
+ })
107
+
108
+ if (arn) {
109
+ await ExecutionDetailProvider.openExecutionDetails(arn)
110
+ }
111
})
112
)
113
}
0 commit comments