We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bfee5bb commit ce9647cCopy full SHA for ce9647c
src/Server/Coderr.Server.Web/ClientApp/components/analyze/myincidents.ts
@@ -285,7 +285,7 @@ export class MyIncidents {
285
var incident = this.allMyIncidents$[i];
286
this.allMyIncidents$.splice(i, 1);
287
this.filterMyIncidents();
288
- if (this.selectedIncident.incidentId === incident.incidentId) {
+ if (this.selectedIncident != null && this.selectedIncident.incidentId === incident.incidentId) {
289
this.selectedIncident = null;
290
}
291
0 commit comments