浏览代码

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";
 }