Parcourir la source

Fix outputtype in errormodel

Steven Silvester il y a 9 ans
Parent
commit
e6be490945
1 fichiers modifiés avec 2 ajouts et 2 suppressions
  1. 2 2
      src/notebook/output-area/model.ts

+ 2 - 2
src/notebook/output-area/model.ts

@@ -157,9 +157,9 @@ class ExecuteErrorModel extends OutputBaseModel {
   traceback: string;
 
   /**
-   * Output type
+   * The output type.
    */
-  outputType: OutputType = "error";
+  outputType: "error";
 }