We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d4598f1 commit ed0c258Copy full SHA for ed0c258
angular.json
@@ -116,6 +116,7 @@
116
},
117
"defaultProject": "DSOMM",
118
"cli": {
119
- "defaultCollection": "@angular-eslint/schematics"
+ "defaultCollection": "@angular-eslint/schematics",
120
+ "analytics": false
121
}
122
src/app/component/matrix/matrix.component.ts
@@ -82,7 +82,8 @@ export class MatrixComponent implements OnInit {
82
this.yaml.getJson().subscribe(data => {
83
this.YamlObject = data;
84
85
- this.allDimensionNames = Object.keys(this.YamlObject);
+ this.allDimensionNames = this.YamlObject ? Object.keys(this.YamlObject) : [];
86
+
87
for (let i = 0; i < this.allDimensionNames.length; i++) {
88
var subdimensionsInCurrentDimension = Object.keys(
89
this.YamlObject[this.allDimensionNames[i]]
0 commit comments