Skip to content

Commit

Permalink
patch toggleMinimize() method of drawer component
Browse files Browse the repository at this point in the history
  • Loading branch information
roncodes committed Nov 9, 2023
1 parent 5fae5ab commit 8cce265
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion addon/components/drawer.js
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ export default class DrawerComponent extends Component {
}

@action toggleMinimize() {
this.isMinimized = !this.isMaximized;
this.isMinimized = !this.isMinimized;
}

@action minimize() {
Expand Down

0 comments on commit 8cce265

Please sign in to comment.