2019-05-07 14:50:57 +00:00
|
|
|
// @flow
|
|
|
|
|
|
|
|
import React, { Component } from 'react';
|
|
|
|
|
|
|
|
import { AlertDialog } from '../../../../base/dialog';
|
|
|
|
import { translate } from '../../../../base/i18n';
|
|
|
|
import { connect } from '../../../../base/redux';
|
|
|
|
|
|
|
|
/**
|
2021-03-16 15:59:33 +00:00
|
|
|
* Dialog to inform the user that we couldn't fetch the dial-in info page.
|
2019-05-07 14:50:57 +00:00
|
|
|
*/
|
|
|
|
class DialInSummaryErrorDialog extends Component<{}> {
|
|
|
|
/**
|
|
|
|
* Implements React's {@link Component#render()}.
|
|
|
|
*
|
|
|
|
* @inheritdoc
|
|
|
|
* @returns {ReactElement}
|
|
|
|
*/
|
|
|
|
render() {
|
|
|
|
return (
|
|
|
|
<AlertDialog
|
|
|
|
contentKey = 'info.dialInSummaryError' />
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
_onSubmit: () => boolean;
|
|
|
|
}
|
|
|
|
|
|
|
|
export default translate(connect()(DialInSummaryErrorDialog));
|