feat(ui): show warning callout on sentinel page if sentinel is out of sync

This commit is contained in:
ShadowArcanist 2026-04-14 19:11:27 +05:30
parent 2a5e1f4838
commit 2ca0ee7d19
No known key found for this signature in database

View file

@ -15,7 +15,12 @@
</div>
@endif
</div>
<div class="flex flex-col gap-2">
@if ($isSentinelEnabled && !$server->isSentinelLive())
<x-callout type="warning" title="Out of Sync" class="mt-2">
Sentinel is not in sync with your server. Click "Sync" to re-sync.
</x-callout>
@endif
<div class="flex flex-col gap-2 pt-2">
@if ($isSentinelEnabled && isDev())
<div class="w-full sm:w-96">
<x-forms.checkbox canGate="update" :canResource="$server" id="isSentinelDebugEnabled"