mirror of
https://github.com/pelican-dev/panel.git
synced 2025-05-28 10:24:45 +02:00

* fix websocket error always displaying * use livewire component with polling for alert banner container * add id to alert banner * cleanup blade file and add "closeable" property
6 lines
257 B
PHP
6 lines
257 B
PHP
<div wire:poll.1s="pullFromSession" id="alert-banner-container" class="flex flex-col gap-4">
|
|
@foreach (array_values($alertBanners) as $alertBanner)
|
|
@include('livewire.alerts.alert-banner', ['alertBanner' => $alertBanner])
|
|
@endforeach
|
|
</div>
|