Skip to content

Commit

Permalink
fix: 2.17 revamp issue fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
shivajivarma committed Jul 17, 2024
1 parent c949287 commit 895dbd7
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/components/informational/modal/modal/modal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,10 @@ export class Modal {
}

closeModal() {
if (!this.managed) this.goatModalClose.emit();
if (!this.managed) {
this.open = false;
}
this.goatModalClose.emit();
}

render() {
Expand Down

0 comments on commit 895dbd7

Please sign in to comment.