Kaynağa Gözat

Fix outputtype in errormodel

Steven Silvester 9 yıl önce
ebeveyn
işleme
e6be490945
1 değiştirilmiş dosya ile 2 ekleme ve 2 silme
  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";
 }