Skip to content

Commit 075f0e2

Browse files
committed
bugfix
1 parent cc4d941 commit 075f0e2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/Cell.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ export const Cell: React.FC<CellProps> = ({ cell, seq }) => {
4545
background: "transparent",
4646
};
4747
}
48-
if (!cell.outputs?.length) {
48+
if (!cell.outputs?.length && !cell.source?.length) {
4949
return null;
5050
}
5151

0 commit comments

Comments
 (0)