feat(react/bulk_actions): port delete note

This commit is contained in:
Elian Doran
2025-08-09 16:47:05 +03:00
parent 40c7ad4b46
commit 4a53be1e33
3 changed files with 35 additions and 40 deletions

View File

@@ -2,8 +2,8 @@ import { ComponentChildren } from "preact";
import AbstractBulkAction from "./abstract_bulk_action";
interface BulkActionProps {
label: string;
children: ComponentChildren;
label: string | ComponentChildren;
children?: ComponentChildren;
helpText?: ComponentChildren;
bulkAction: AbstractBulkAction;
}