@bobfrankston/rmfmail 1.1.102 → 1.1.103

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -8705,7 +8705,7 @@ document.addEventListener("keydown", (e) => {
8705
8705
  const editable = t?.isContentEditable;
8706
8706
  const inEditable = tag === "INPUT" || tag === "TEXTAREA" || tag === "SELECT" || editable;
8707
8707
  const listSelectionCount = document.querySelectorAll("#ml-body .ml-row.selected").length;
8708
- if (inEditable && listSelectionCount === 0) return;
8708
+ if (inEditable && listSelectionCount <= 1) return;
8709
8709
  e.preventDefault();
8710
8710
  deleteSelection();
8711
8711
  }