Skip to content

Commit

Permalink
fix(module: modal): fix visable init value as false (#535)
Browse files Browse the repository at this point in the history
  • Loading branch information
Guoyuanqiang authored and fisherspy committed Aug 20, 2019
1 parent 6143cc6 commit 1f6391e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/modal/modal-options.provider.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { Injectable, TemplateRef } from '@angular/core';

export class ModalBaseOptions {
visible?: boolean = true;
visible?: boolean = false;
focus?: boolean = true;
prefixCls?: string = 'am-modal';
animated?: boolean = true;
Expand Down

0 comments on commit 1f6391e

Please sign in to comment.