This commit is contained in:
Jaco Greeff 2016-12-12 18:58:31 +01:00
parent a2a89f7e59
commit a8ae9b02f9

View File

@ -39,7 +39,7 @@ export default class ModalStore {
}
@computed get showUpgrade () {
return !closed && Date.now() >= this.remindAt;
return !this.closed && Date.now() >= this.remindAt;
}
@action closeModal = () => {