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.
1 parent b7f2dee commit 3c421ddCopy full SHA for 3c421dd
src/notebooks/deepnote/converters/inputConverters.ts
@@ -53,7 +53,7 @@ export abstract class BaseInputBlockConverter<T extends z.ZodObject> implements
53
}
54
55
canConvert(blockType: string): boolean {
56
- return blockType.toLowerCase() === this.getSupportedType();
+ return this.getSupportedTypes().includes(blockType.toLowerCase());
57
58
59
convertToCell(block: DeepnoteBlock): NotebookCellData {
0 commit comments