Skip to content
This repository has been archived by the owner on Oct 11, 2023. It is now read-only.

Commit

Permalink
Fix linting error
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel Jurek authored and danieljurek committed Apr 10, 2018
1 parent af2709f commit 5283869
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Incident/IncidentSummary.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ const BasicInfoColumn = (ticketSystem, ticket) => [
<a href={`${ticketSystem.ticketUriPrefix}${ticket.originId}${ticketSystem.ticketUriSuffix}`} key={key} target='_blank'>
{ticket.originId}
</a>,
(key) => ticket.data && 'severity' in ticket.data
(key) => ticket.data && 'severity' in ticket.data
? (
<div key={key}>
Severity: {ticket.data.severity}
Expand Down

0 comments on commit 5283869

Please sign in to comment.