Skip to content

Commit e9923ed

Browse files
committed
Added setters to IncidentClosed and InsidentAssigned
1 parent 37fb001 commit e9923ed

File tree

4 files changed

+23
-14
lines changed

4 files changed

+23
-14
lines changed

src/Server/Coderr.Server.Api/Core/Incidents/Events/IncidentAssigned.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ protected IncidentAssigned()
4545
/// <summary>
4646
/// When the incident was assigned (client side)
4747
/// </summary>
48-
public DateTime AssignedAtUtc { get; }
48+
public DateTime AssignedAtUtc { get; private set; }
4949

5050
/// <summary>
5151
/// Incident being assigned

src/Server/Coderr.Server.Api/Core/Incidents/Events/IncidentClosed.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,6 @@ protected IncidentClosed()
2828
public int IncidentId { get;private set; }
2929
public string Solution { get;private set; }
3030
public string ApplicationVersion { get; private set; }
31-
public DateTime ClosedAtUtc { get; }
31+
public DateTime ClosedAtUtc { get; private set; }
3232
}
3333
}

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

Lines changed: 20 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -3,19 +3,27 @@
33
bottom: 0
44
}
55

6-
7-
.onboarding .card .card-footer, .onboarding .card .card-header {
8-
background: transparent;
9-
border: none;
10-
}
11-
12-
/*.onboarding .card-group {
13-
padding: 5px;
14-
}*/
156
.onboarding .card {
7+
background-color: #393938; /*gray-700*/
8+
color: #ffffff;
169
margin-right: 10px;
1710
}
1811

19-
.onboarding .card:last-child {
20-
margin-right: 0;
21-
}
12+
13+
.onboarding .card:last-child {
14+
margin-right: 0;
15+
}
16+
17+
.onboarding .card .card-footer, .onboarding .card .card-header {
18+
background: transparent;
19+
border: none;
20+
}
21+
22+
23+
.onboarding .card a {
24+
color: #f18c65;
25+
}
26+
27+
.onboarding .card a.btn {
28+
color: #fff;
29+
}

src/Server/Coderr.Server.Web/Coderr.Server.Web.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
<IsPackable>false</IsPackable>
88
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
99
<Version>2.0.1</Version>
10+
<UserSecretsId>18bfcacd-1b5d-435b-bc30-febb568a29b2</UserSecretsId>
1011
</PropertyGroup>
1112

1213
<PropertyGroup Condition="'$(Configuration)' == 'Debug'">

0 commit comments

Comments
 (0)