add mark as read button for notification table

This commit is contained in:
smanylov
2026-03-31 14:00:51 +07:00
parent b05661e120
commit d68a35903c
@@ -96,14 +96,25 @@ export function NotificationsList() {
className="notifications-list-action" className="notifications-list-action"
> >
{(selectedFiles.size !== 0) && ( {(selectedFiles.size !== 0) && (
<button <>
className="btn btn-primary" <button
onClick={() => { className="btn btn-primary"
clearHandler(); onClick={() => {
}} clearHandler();
> }}
{t('deselect')} >
</button> {t('deselect')}
</button>
<button
className="btn btn-primary"
onClick={() => {
clearHandler();
}}
>
{t('mark-all-as-read')}
</button>
</>
)} )}
<button <button
className="btn btn-primary" className="btn btn-primary"