mirror of
https://github.com/zadam/trilium.git
synced 2025-10-20 23:29:02 +02:00
fix(bulk_actions): deleting a bulk action would execute all bulk actions
This commit is contained in:
parent
2eaeccda05
commit
6fc5aa0090
@ -14,17 +14,20 @@ export default function HelpRemoveButtons({ help, removeText, onRemove }: HelpRe
|
|||||||
{help && <>
|
{help && <>
|
||||||
<Dropdown
|
<Dropdown
|
||||||
className="help-dropdown"
|
className="help-dropdown"
|
||||||
buttonClassName="bx bx-help-circle icon-action"
|
buttonClassName="bx bx-help-circle icon-action"
|
||||||
hideToggleArrow
|
hideToggleArrow
|
||||||
>{help}</Dropdown>
|
>{help}</Dropdown>
|
||||||
{" "}
|
{" "}
|
||||||
</>}
|
</>}
|
||||||
<ActionButton
|
<ActionButton
|
||||||
icon="bx bx-x"
|
icon="bx bx-x"
|
||||||
className="search-option-del"
|
className="search-option-del"
|
||||||
text={removeText ?? ""}
|
text={removeText ?? ""}
|
||||||
onClick={onRemove}
|
onClick={(e) => {
|
||||||
|
e.preventDefault();
|
||||||
|
onRemove?.();
|
||||||
|
}}
|
||||||
/>
|
/>
|
||||||
</td>
|
</td>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user