2019-05-07 16:50:57 +02:00
|
|
|
import React, { Component } from 'react';
|
2023-04-25 13:50:52 +03:00
|
|
|
import { WithTranslation } from 'react-i18next';
|
2023-03-21 09:47:52 +02:00
|
|
|
import { connect } from 'react-redux';
|
2019-05-07 16:50:57 +02:00
|
|
|
|
2023-03-31 14:04:33 +03:00
|
|
|
import AlertDialog from '../../../../base/dialog/components/native/AlertDialog';
|
2023-04-03 13:49:19 +03:00
|
|
|
import { translate } from '../../../../base/i18n/functions';
|
2019-05-07 16:50:57 +02:00
|
|
|
|
|
|
|
|
/**
|
2021-03-16 11:59:33 -04:00
|
|
|
* Dialog to inform the user that we couldn't fetch the dial-in info page.
|
2019-05-07 16:50:57 +02:00
|
|
|
*/
|
2023-04-25 13:50:52 +03:00
|
|
|
class DialInSummaryErrorDialog extends Component<WithTranslation> {
|
2019-05-07 16:50:57 +02:00
|
|
|
/**
|
|
|
|
|
* Implements React's {@link Component#render()}.
|
|
|
|
|
*
|
|
|
|
|
* @inheritdoc
|
|
|
|
|
* @returns {ReactElement}
|
|
|
|
|
*/
|
2025-03-12 10:19:11 -05:00
|
|
|
override render() {
|
2019-05-07 16:50:57 +02:00
|
|
|
return (
|
|
|
|
|
<AlertDialog
|
|
|
|
|
contentKey = 'info.dialInSummaryError' />
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export default translate(connect()(DialInSummaryErrorDialog));
|