Skip to content

Commit

Permalink
fix not equals operator
Browse files Browse the repository at this point in the history
  • Loading branch information
roseeichelmann committed Apr 16, 2024
1 parent e0a568b commit 11d881f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion atd-vze/src/views/Crashes/RelatedRecordsTable.js
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,7 @@ const RelatedRecordsTable = ({

{!isEditing &&
(fieldConfig.fields[field].badge &&
formatValue(row, field) != "NO DATA" ? (
formatValue(row, field) !== "NO DATA" ? (
<Badge
color={fieldConfig.fields[field].badgeColor(
row
Expand Down

0 comments on commit 11d881f

Please sign in to comment.