Procházet zdrojové kódy

Fix outputtype in errormodel

Steven Silvester před 9 roky
rodič
revize
e6be490945
1 změnil soubory, kde provedl 2 přidání a 2 odebrání
  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";
 }