From 4f92011386a7b5764063c68970187840deaec350 Mon Sep 17 00:00:00 2001
From: Patrick Fic <>
Date: Mon, 8 Mar 2021 14:43:24 -0800
Subject: [PATCH] IO-723 Audit Job Notes
---
.../job-detail-cards/job-detail-cards.notes.component.jsx | 7 ++++++-
1 file changed, 6 insertions(+), 1 deletion(-)
diff --git a/client/src/components/job-detail-cards/job-detail-cards.notes.component.jsx b/client/src/components/job-detail-cards/job-detail-cards.notes.component.jsx
index 2fd327b99..d48b3e588 100644
--- a/client/src/components/job-detail-cards/job-detail-cards.notes.component.jsx
+++ b/client/src/components/job-detail-cards/job-detail-cards.notes.component.jsx
@@ -1,5 +1,9 @@
import { List } from "antd";
-import { WarningFilled, EyeInvisibleFilled } from "@ant-design/icons";
+import {
+ WarningFilled,
+ EyeInvisibleFilled,
+ AuditOutlined,
+} from "@ant-design/icons";
import React from "react";
import { useTranslation } from "react-i18next";
import CardTemplate from "./job-detail-cards.template.component";
@@ -31,6 +35,7 @@ export default function JobDetailCardsNotesComponent({ loading, data }) {
) : null}
{item.private ? : null}
+ {item.audit ? : null}
{item.text}
)}