You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/vs/workbench/parts/files/browser/views/explorerViewer.ts
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -886,9 +886,9 @@ export class FileDragAndDrop implements IDragAndDrop {
886
886
887
887
// If we are in single-folder context, ask for confirmation to create a workspace
888
888
constresult=this.messageService.confirm({
889
-
message: nls.localize('dropFolders',"Do you want to add the folders to the workspace?"),
889
+
message: folders.length>1 ? nls.localize('dropFolders',"Do you want to add the folders to the workspace?") : nls.localize('dropFolder',"Do you want to add the folder to the workspace?"),
0 commit comments