Skip to content

Commit

Permalink
fix deletion of scenario
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidFeldhoff committed Mar 9, 2021
1 parent 2ddf94f commit 648a98e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vscode-extension/src/Services/WebPanelCommandService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ export class WebPanelCommandService {
if (entry.State == MessageState.Deleted) {
let responseScenarioShouldBeDeleted: string | undefined
if (!entry.internalCall)
await informationOutput.ask(confirmDeletion('this scenario'), [optionYes, optionNo]);
responseScenarioShouldBeDeleted = await informationOutput.ask(confirmDeletion('this scenario'), [optionYes, optionNo]);
else
responseScenarioShouldBeDeleted = optionYes
if (responseScenarioShouldBeDeleted === optionYes) {
Expand Down

0 comments on commit 648a98e

Please sign in to comment.