We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
text/uri-list
1 parent 2a63d7b commit a0a9b78Copy full SHA for a0a9b78
src/vs/workbench/browser/dnd.ts
@@ -60,7 +60,7 @@ export async function extractTreeDropData(dataTransfer: VSDataTransfer): Promise
60
if (dataTransfer.has(resourcesKey)) {
61
try {
62
const asString = await dataTransfer.get(resourcesKey)?.asString();
63
- const rawResourcesData = JSON.stringify(asString?.split('\\n').filter(value => !value.startsWith('#')));
+ const rawResourcesData = JSON.stringify(asString?.split('\n').filter(value => !value.startsWith('#')));
64
editors.push(...createDraggedEditorInputFromRawResourcesData(rawResourcesData));
65
} catch (error) {
66
// Invalid transfer
0 commit comments