You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

DialInSummaryErrorDialog.js 703B

1234567891011121314151617181920212223242526272829
  1. // @flow
  2. import React, { Component } from 'react';
  3. import { AlertDialog } from '../../../../base/dialog';
  4. import { translate } from '../../../../base/i18n';
  5. import { connect } from '../../../../base/redux';
  6. /**
  7. * Dialog to inform the user that we could't fetch the dial-in info page.
  8. */
  9. class DialInSummaryErrorDialog extends Component<{}> {
  10. /**
  11. * Implements React's {@link Component#render()}.
  12. *
  13. * @inheritdoc
  14. * @returns {ReactElement}
  15. */
  16. render() {
  17. return (
  18. <AlertDialog
  19. contentKey = 'info.dialInSummaryError' />
  20. );
  21. }
  22. _onSubmit: () => boolean;
  23. }
  24. export default translate(connect()(DialInSummaryErrorDialog));