bugfix notify text
All checks were successful
Build & Push Docker Image / docker (push) Successful in 1m49s

This commit is contained in:
Ahmed Darrazi 2025-12-18 21:47:54 +01:00
parent 8df9ea6802
commit 1f0dff07a9

View File

@ -24,9 +24,14 @@ const Notification = () => {
</Button> </Button>
</PopoverTrigger> </PopoverTrigger>
<PopoverContent align="end" className="w-80 p-0"> <PopoverContent align="end" className="w-80 p-0">
<div className="flex items-center justify-between border-b px-4 py-2"> <div className="flex flex-wrap items-center justify-between gap-2 border-b px-4 py-2">
<h4 className="font-semibold">{dashboard.notifications}</h4> <h4 className="font-semibold">{dashboard.notifications}</h4>
<Button variant="ghost" size="sm" className="px-2 text-xs" onClick={() => router.put(route('notifications.mark-all-as-read'))}> <Button
variant="ghost"
size="sm"
className="h-auto px-2 text-xs leading-snug whitespace-normal"
onClick={() => router.put(route('notifications.mark-all-as-read'))}
>
{button.mark_all_as_read} {button.mark_all_as_read}
</Button> </Button>
</div> </div>