Skip to content

Commit

Permalink
fix(addon/components/-focusable): calls move if action passed in.
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewhartstonge committed Feb 4, 2025
1 parent 9b074f6 commit 5ca4c50
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion addon/components/-focusable.js
Original file line number Diff line number Diff line change
Expand Up @@ -170,5 +170,9 @@ export default class Focusable extends Component {
}
}

move() {}
move(e) {
if (this.args.move) {
this.args.move(e);
}
}
}

0 comments on commit 5ca4c50

Please sign in to comment.