Skip to content

Commit 2223eab

Browse files
authored
FUND-2310 adjust-labels (Unhealthy endpoints/circuitbreaker) (#150)
fixed some labels
1 parent fcdda15 commit 2223eab

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/OneGround.ZGW.Notificaties.Messaging/Extensions/AddHangfireUnhealthMonitor.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,6 @@ public static void AddHangfireUnhealthMonitor(this WebApplication app)
1919
);
2020

2121
// Add a menu-item to the Hangfire Dashboard navigation bar
22-
NavigationMenu.Items.Add(page => new MenuItem("Unhealth Monitor", $"/hangfire/{UnhealthMonitorUrl}"));
22+
NavigationMenu.Items.Add(page => new MenuItem("Unhealthy endpoints", $"/hangfire/{UnhealthMonitorUrl}"));
2323
}
2424
}

src/OneGround.ZGW.Notificaties.Messaging/UI/UnhealthMonitorDashboardPage.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -348,7 +348,7 @@ function clearCache() {{
348348
}})
349349
.finally(() => {{
350350
btn.disabled = false;
351-
btn.textContent = 'Clear Cache';
351+
btn.textContent = 'Clear all';
352352
}});
353353
}}
354354
@@ -371,7 +371,7 @@ function showNotification(message, isError = false) {{
371371
<div id='notification' class='notification'></div>
372372
<div class='container'>
373373
<div class='header'>
374-
<h1>Webhook Receiver Unhealth Monitor</h1>
374+
<h1>Unhealthy notification receiver endpoints</h1>
375375
<div class='header-actions'>
376376
<div class='toggle-container'>
377377
<span class='toggle-label'>Auto Refresh</span>
@@ -380,7 +380,7 @@ function showNotification(message, isError = false) {{
380380
<span class='toggle-slider'></span>
381381
</label>
382382
</div>
383-
<button id='clearCacheBtn' class='clear-cache-btn' onclick='clearCache()'>Clear Cache</button>
383+
<button id='clearCacheBtn' class='clear-cache-btn' onclick='clearCache()'>Clear all</button>
384384
<a href='javascript:history.back()' class='back-link'>Back to Previous Page</a>
385385
</div>
386386
</div>

0 commit comments

Comments
 (0)