We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4cc1ac8 commit 58119f5Copy full SHA for 58119f5
1 file changed
reqifviewer/Pages/Specification/SpecificationPage.razor
@@ -111,9 +111,15 @@ else
111
112
this.reqIf = this.ReqIfLoaderService.ReqIFData.SingleOrDefault(x => x.TheHeader.Identifier == this.Identifier);
113
114
- this.specifications = reqIf.CoreContent.Specifications;
115
-
116
- this.count = this.specifications.Count();
+ if (this.reqIf != null)
+ {
+ this.specifications = this.reqIf.CoreContent.Specifications;
117
+ this.count = this.specifications.Count();
118
+ }
119
+ else
120
121
+ this.count = 0;
122
123
}
124
catch (Exception e)
125
{
0 commit comments