Skip to content

Commit cc7b549

Browse files
committed
Corrected bootstrap bg color
1 parent 86bf472 commit cc7b549

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

src/Server/Coderr.Server.ReportAnalyzer/Incidents/IncidentCreatedHandler.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,9 @@ public async Task HandleAsync(IMessageContext context, ReportAddedToIncident mes
2121
if (message.IsNewIncident != true)
2222
return;
2323
var collection = message.Report.GetCoderrCollection();
24+
if (collection == null)
25+
return;
26+
2427
if (!collection.Properties.TryGetValue("CorrelationId", out var correlationId))
2528
return;
2629

src/Server/Coderr.Server.Web/wwwroot/scss/coderr-variables.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ $theme-colors: (
2424

2525
$gray: $gray-700;
2626

27-
$primary: $blue;
27+
$primary: $gray;
2828
$secondary: $red;
2929
$light: $gray-200;
3030
$middle: $gray-400;

0 commit comments

Comments
 (0)