Skip to content

Commit 495c7d9

Browse files
authored
Remove caption usage from message (#2477)
1 parent 95ab062 commit 495c7d9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/features/Console.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ function showChoicePrompt(
114114
vscode.window
115115
.showQuickPick(
116116
quickPickItems,
117-
{ placeHolder: promptDetails.caption + " - " + promptDetails.message })
117+
{ placeHolder: promptDetails.message })
118118
.then(onItemSelected);
119119
} else {
120120
const checkboxQuickPickItems =
@@ -134,7 +134,7 @@ function showChoicePrompt(
134134
resultThenable =
135135
showCheckboxQuickPick(
136136
checkboxQuickPickItems,
137-
{ confirmPlaceHolder: `${promptDetails.caption} - ${promptDetails.message}`})
137+
{ confirmPlaceHolder: promptDetails.message })
138138
.then(onItemsSelected);
139139
}
140140

0 commit comments

Comments
 (0)