mimetype and remove revert.

This commit is contained in:
rebornix
2020-06-16 14:55:12 -07:00
parent 89e41e3300
commit 8ad77ef2b6
8 changed files with 6 additions and 30 deletions

View File

@@ -666,8 +666,8 @@ export class ExtHostNotebookOutputRenderer {
}
matches(mimeType: string): boolean {
if (this.filter.subTypes) {
if (this.filter.subTypes.indexOf(mimeType) >= 0) {
if (this.filter.mimeTypes) {
if (this.filter.mimeTypes.indexOf(mimeType) >= 0) {
return true;
}
}