fix SessionRegistrationView missing from signal.js

pull/1381/head
Audric Ackermann 4 years ago
parent 7b3981207e
commit 4d9371dfe7
No known key found for this signature in database
GPG Key ID: 999F434D76324AD4

@ -982,7 +982,7 @@
}
});
Whisper.events.on('showPasswordDialog', async (options) => {
Whisper.events.on('showPasswordDialog', async options => {
if (appView) {
appView.showPasswordDialog(options);
}

@ -49,6 +49,10 @@ const { SessionModal } = require('../../ts/components/session/SessionModal');
const {
SessionSeedModal,
} = require('../../ts/components/session/SessionSeedModal');
const {
SessionRegistrationView,
} = require('../../ts/components/session/SessionRegistrationView');
const {
SessionInboxView,
} = require('../../ts/components/session/SessionInboxView');
@ -255,6 +259,7 @@ exports.setup = (options = {}) => {
SessionSeedModal,
SessionPasswordModal,
SessionPasswordPrompt,
SessionRegistrationView,
MediaGallery,
Message,
Quote,

@ -546,10 +546,10 @@ export class SettingsView extends React.Component<SettingsViewProps, State> {
buttonColor: SessionButtonColor.Primary,
},
onClick: () => {
window.Whisper.events.trigger('showPasswordDialog', {
action: 'change',
onSuccess: this.onPasswordUpdated,
});
window.Whisper.events.trigger('showPasswordDialog', {
action: 'change',
onSuccess: this.onPasswordUpdated,
});
},
confirmationDialogParams: undefined,
},
@ -571,7 +571,7 @@ export class SettingsView extends React.Component<SettingsViewProps, State> {
action: 'remove',
onSuccess: this.onPasswordUpdated,
});
},
},
confirmationDialogParams: undefined,
},
];

Loading…
Cancel
Save