Skip to content

Commit 53f7900

Browse files
warwickschroederjasontaylordev
authored andcommitted
Update icon on All Messages page
1 parent 19cde03 commit 53f7900

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/Frontend/src/components/audit/AuditList.vue

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ import RefreshConfig from "../RefreshConfig.vue";
1010
import LoadingSpinner from "@/components/LoadingSpinner.vue";
1111
import useFetchWithAutoRefresh from "@/composables/autoRefresh";
1212
import { MessageStatus } from "@/resources/Message";
13+
import FAIcon from "@/components/FAIcon.vue";
14+
import { faInfoCircle } from "@fortawesome/free-solid-svg-icons";
1315
1416
const store = useAuditStore();
1517
const { messages, totalCount, sortBy, messageFilterString, selectedEndpointName, itemsPerPage, dateRange } = storeToRefs(store);
@@ -111,7 +113,7 @@ watch(autoRefreshValue, (newValue) => {
111113
</div>
112114
<div v-if="hasNoSuccessfulMessages" class="no-audit-banner">
113115
<div class="banner-content">
114-
<div class="banner-icon">ℹ️</div>
116+
<FAIcon :icon="faInfoCircle" class="banner-icon" />
115117
<div class="banner-text">
116118
<strong>No successful audit messages found.</strong>
117119
<p>Auditing may not be enabled on your endpoints. Learn how to enable auditing to track all messages flowing through your system.</p>
@@ -166,6 +168,7 @@ watch(autoRefreshValue, (newValue) => {
166168
.banner-icon {
167169
font-size: 24px;
168170
flex-shrink: 0;
171+
color: #007bff;
169172
}
170173
171174
.banner-text {

0 commit comments

Comments
 (0)