Skip to content

Commit 868ea8d

Browse files
author
Diler Zaza
committed
feat(stepfunctions): add View by Execution ARN command and provider
1 parent e0703e4 commit 868ea8d

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

packages/core/src/stepFunctions/executionDetails/executionDetailProvider.ts

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,6 @@ export class ExecutionDetailProvider {
9090
* Gets the webview content for Execution Details.
9191
* @private
9292
*/
93-
// executionArn: string
9493
private getWebviewContent = async (): Promise<string> => {
9594
const htmlFileSplit = this.webviewHtml.split('<head>')
9695

@@ -109,12 +108,8 @@ export class ExecutionDetailProvider {
109108
// Set component type to ExecutionDetails
110109
const componentTypeTag = `<meta name="component-type" content="ExecutionDetails" />`
111110

112-
// Add execution ARN to load the specific execution
113-
// const executionArnTag = `<meta name="execution-arn" content="${executionArn}" />`
114-
115111
// Set to read-only mode as this is just displaying execution details
116112
const modeTag = `<meta name="workflow-mode" content="${WorkflowMode.Readonly}" />`
117-
// const modeTag = `<meta name="workflow-mode" content="${mode}" />`
118113

119114
return `${htmlFileSplit[0]} <head> ${baseTag} ${localeTag} ${darkModeTag} ${tabSizeTag} ${modeTag} ${componentTypeTag} ${htmlFileSplit[1]}`
120115
}
@@ -135,7 +130,6 @@ export class ExecutionDetailProvider {
135130
}
136131

137132
// Set up the content
138-
// panel.webview.html = await this.getWebviewContent(executionArn)
139133
panel.webview.html = await this.getWebviewContent()
140134

141135
// Handle messages from the webview

0 commit comments

Comments
 (0)