You've already forked matrix-react-sdk
mirror of
https://github.com/matrix-org/matrix-react-sdk.git
synced 2025-11-07 10:46:24 +03:00
@@ -86,14 +86,14 @@ export default class CallEvent extends React.Component<IProps, IState> {
|
|||||||
/>
|
/>
|
||||||
<AccessibleButton
|
<AccessibleButton
|
||||||
className="mx_CallEvent_content_button mx_CallEvent_content_button_reject"
|
className="mx_CallEvent_content_button mx_CallEvent_content_button_reject"
|
||||||
onClick={ this.props.callEventGrouper.rejectCall }
|
onClick={this.props.callEventGrouper.rejectCall}
|
||||||
kind="danger"
|
kind="danger"
|
||||||
>
|
>
|
||||||
<span> { _t("Decline") } </span>
|
<span> { _t("Decline") } </span>
|
||||||
</AccessibleButton>
|
</AccessibleButton>
|
||||||
<AccessibleButton
|
<AccessibleButton
|
||||||
className="mx_CallEvent_content_button mx_CallEvent_content_button_answer"
|
className="mx_CallEvent_content_button mx_CallEvent_content_button_answer"
|
||||||
onClick={ this.props.callEventGrouper.answerCall }
|
onClick={this.props.callEventGrouper.answerCall}
|
||||||
kind="primary"
|
kind="primary"
|
||||||
>
|
>
|
||||||
<span> { _t("Accept") } </span>
|
<span> { _t("Accept") } </span>
|
||||||
@@ -165,7 +165,7 @@ export default class CallEvent extends React.Component<IProps, IState> {
|
|||||||
{ _t("You missed this call") }
|
{ _t("You missed this call") }
|
||||||
<AccessibleButton
|
<AccessibleButton
|
||||||
className="mx_CallEvent_content_button mx_CallEvent_content_button_callBack"
|
className="mx_CallEvent_content_button mx_CallEvent_content_button_callBack"
|
||||||
onClick={ this.props.callEventGrouper.callBack }
|
onClick={this.props.callEventGrouper.callBack}
|
||||||
kind="primary"
|
kind="primary"
|
||||||
>
|
>
|
||||||
<span> { _t("Call back") } </span>
|
<span> { _t("Call back") } </span>
|
||||||
|
|||||||
Reference in New Issue
Block a user