Skip to content

Commit 6293721

Browse files
committed
remove plain-text output, microsoft/vscode#94237
1 parent 27f19cd commit 6293721

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

src/notebookProvider.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -190,8 +190,7 @@ export class IssuesNotebookProvider implements vscode.NotebookProvider {
190190
outputKind: vscode.CellOutputKind.Rich,
191191
data: {
192192
['text/html']: `<div class="${count > 12 ? 'large collapsed' : ''}">${html}</div>`,
193-
['text/markdown']: md,
194-
['text/plain']: allQueryData.map(d => `${d.q}, ${d.sort || 'default'} sort`).join('\n\n')
193+
['text/markdown']: md
195194
}
196195
}];
197196
}

0 commit comments

Comments
 (0)