Skip to content

Commit

Permalink
fix: move actions button besides filter button (#1112)
Browse files Browse the repository at this point in the history
(cherry picked from commit 203b162)
  • Loading branch information
DaizyModi authored and mergify[bot] committed Oct 9, 2023
1 parent 3e0ee4b commit 28c850a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ frappe.ui.form.on("Purchase Reconciliation Tool", {

// move actions button next to filters
for (let button of $(".custom-actions .inner-group-button")) {
if (button.innerText != "Actions ") continue;
if (button.innerText?.trim() != "Actions") continue;
$(".custom-button-group .inner-group-button").remove();
$(button).appendTo($(".custom-button-group"));
}
Expand Down

0 comments on commit 28c850a

Please sign in to comment.