Преглед на файлове

Fix outputtype in errormodel

Steven Silvester преди 9 години
родител
ревизия
e6be490945
променени са 1 файла, в които са добавени 2 реда и са изтрити 2 реда
  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";
 }