feat(ui): show warning callout on sentinel page if sentinel is out of sync
This commit is contained in:
parent
2a5e1f4838
commit
2ca0ee7d19
1 changed files with 6 additions and 1 deletions
|
|
@ -15,7 +15,12 @@
|
||||||
</div>
|
</div>
|
||||||
@endif
|
@endif
|
||||||
</div>
|
</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())
|
@if ($isSentinelEnabled && isDev())
|
||||||
<div class="w-full sm:w-96">
|
<div class="w-full sm:w-96">
|
||||||
<x-forms.checkbox canGate="update" :canResource="$server" id="isSentinelDebugEnabled"
|
<x-forms.checkbox canGate="update" :canResource="$server" id="isSentinelDebugEnabled"
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue