Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>
This commit is contained in:
Šimon Brandner 2021-07-20 13:20:30 +02:00
parent dd6379cf4b
commit 6cb1c5d918
No known key found for this signature in database
GPG key ID: 55C211A1226CB17D

View file

@ -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>