feat(react/bulk_actions): port delete revisions

This commit is contained in:
Elian Doran
2025-08-09 16:55:51 +03:00
parent 4a53be1e33
commit f95b5d6f14
3 changed files with 31 additions and 35 deletions

View File

@@ -9,11 +9,11 @@ function DeleteNoteBulkActionComponent({ bulkAction }: { bulkAction: AbstractBul
bulkAction={bulkAction}
label={<><Icon icon="bx bx-trash" /> {t("delete_note.delete_matched_notes")}</>}
helpText={<>
<p>${t("delete_note.delete_matched_notes_description")}</p>
<p>{t("delete_note.delete_matched_notes_description")}</p>
<p>${t("delete_note.undelete_notes_instruction")}</p>
<p>{t("delete_note.undelete_notes_instruction")}</p>
${t("delete_note.erase_notes_instruction")}
{t("delete_note.erase_notes_instruction")}
</>}
/>
);