Skip to content

Commit

Permalink
[SQ] improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
samatstariongroup committed Aug 12, 2024
1 parent 7a095fb commit 07afdf8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -129,13 +129,13 @@ else

@switch (attributeDefinition?.SpecType)
{
case SpecObjectType specObjectType:
case SpecObjectType:
<a href="/reqif/@this.ReqIF/spectype/@attributeDefinition?.SpecType?.Identifier">@attributeDefinition?.SpecType?.LongName [SpecObject Type]</a>
break;
case SpecificationType specificationType:
case SpecificationType:
<a href="/reqif/@this.ReqIF/spectype/@attributeDefinition?.SpecType?.Identifier">@attributeDefinition?.SpecType?.LongName [Specification Type]</a>
break;
case SpecRelationType specRelationType:
case SpecRelationType:
<a href="/reqif/@this.ReqIF/spectype/@attributeDefinition?.SpecType?.Identifier">@attributeDefinition?.SpecType?.LongName [SpecRelation Type] </a>
break;
}
Expand Down
3 changes: 1 addition & 2 deletions reqifviewer/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -89,9 +89,8 @@ public static async Task Main(string[] args)

var logger = app.Services.GetService<ILogger<Program>>();
var resourceLoader = app.Services.GetService<IResourceLoader>();
var logo = resourceLoader.QueryLogo();
logger.LogInformation("################################################################");
logger.LogInformation(logo);
logger.LogInformation(resourceLoader.QueryLogo());
logger.LogInformation("################################################################");

app.UseStaticFiles();
Expand Down

0 comments on commit 07afdf8

Please sign in to comment.