Skip to content

Commit

Permalink
Small details fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
sobo-odoo committed Dec 30, 2024
1 parent f5320b6 commit ca2410a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,11 @@ export class GridLayoutPlugin extends Plugin {
buttons.push(
{
class: "o_send_back",
handler: this.sendGridItemToBack.bind(this, "prev"),
handler: this.sendGridItemToBack.bind(this),
},
{
class: "o_bring_front",
handler: this.bringGridItemToFront.bind(this, "next"),
handler: this.bringGridItemToFront.bind(this),
}
);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ export class OverlayButtonsPlugin extends Plugin {
addOverlayButtons(optionsContainer) {
this.removeOverlayButtons();

// Find the innermost option neediing the overlay buttons.
// Find the innermost option needing the overlay buttons.
const optionWithOverlayButtons = optionsContainer.findLast((option) =>
this.hasOverlayOptions(option.element)
);
Expand Down

0 comments on commit ca2410a

Please sign in to comment.