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 cfce2e4 commit c7b3eecCopy full SHA for c7b3eec
src/packages/frontend/jupyter/output-messages/message.tsx
@@ -124,6 +124,9 @@ export const CellOutputMessages: React.FC<CellOutputMessagesProps> = React.memo(
124
for (const n of numericallyOrderedKeys(obj)) {
125
const mesg = obj[n];
126
if (mesg != null) {
127
+ if (mesg.get("transient")) {
128
+ continue;
129
+ }
130
if (mesg.get("traceback")) {
131
hasError = true;
132
traceback += mesg.get("traceback").join("\n") + "\n";
0 commit comments