Apply changes from review

pull/21833/head
Will Hunt 2021-02-24 17:32:00 +00:00
parent 84bcdf66f2
commit c78d1c49ab
2 changed files with 3 additions and 3 deletions

View File

@ -305,7 +305,7 @@ class LoggedInView extends React.Component<IProps, IState> {
}
};
_onHideToast = () => {
private onUsageLimitDismissed = () => {
this.setState({
usageLimitDismissed: true,
});
@ -322,7 +322,7 @@ class LoggedInView extends React.Component<IProps, IState> {
if (usageLimitEventContent && this.state.usageLimitDismissed) {
showServerLimitToast(
usageLimitEventContent.limit_type,
this._onHideToast,
this.onUsageLimitDismissed,
usageLimitEventContent.admin_contact,
error,
);

View File

@ -40,7 +40,7 @@ export const showToast = (limitType: string, onHideToast: () => void, adminConta
acceptLabel: _t("Ok"),
onAccept: () => {
hideToast()
onHideToast()
if (onHideToast) { onHideToast() }
},
},
component: GenericToast,