Skip to content

Commit 07304f9

Browse files
committed
2 parents 7820984 + 19377fd commit 07304f9

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

src/Server/Coderr.Server.ReportAnalyzer/Inbound/Handlers/Reports/ReportAnalyzer.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,8 +88,8 @@ public async Task Analyze(IMessageContext context, ErrorReportEntity report)
8888
if (incident == null)
8989
{
9090
incident = BuildIncident(report);
91-
9291
_repository.CreateIncident(incident);
92+
9393
var evt = new IncidentCreated(incident.ApplicationId,
9494
incident.Id, incident.Description, incident.FullName)
9595
{

src/Server/Coderr.Server.Web/ClientApp/components/discover/home/home.css

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,3 +68,8 @@
6868
svg.ct-chart-line, svg.ct-chart-line g.ct-labels, svg.ct-chart-line g.ct-labels span.ct-label {
6969
overflow: visible;
7070
}
71+
72+
73+
#IncidentSearchView #SearchOptions input {
74+
color: #000;
75+
}

src/Server/Coderr.Server.Web/ClientApp/components/discover/home/home.vue.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<template>
2-
<div class="">
2+
<div>
33
<div class="row minimal-gutters">
44
<div class="col-lg-3">
55
<div class="card mb-1">
@@ -30,7 +30,7 @@
3030

3131
</div>
3232
</div>
33-
<div class="card bg-blue mb-1 p-2" v-if="reportCount != 0">
33+
<div class="card bg-blue mb-1 p-2" v-if="reportCount == 0">
3434
<div class="">
3535
<h3>Report exceptions</h3>
3636
<p class="text-white">

0 commit comments

Comments
 (0)