File tree Expand file tree Collapse file tree 1 file changed +0
-6
lines changed
packages/core/src/stepFunctions/executionDetails Expand file tree Collapse file tree 1 file changed +0
-6
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments