Fix invalid accessor for method.

pull/21833/head
Dariusz Niemczyk 2021-09-16 15:21:40 +02:00
parent 3da02f1546
commit f7d8ae2b13
No known key found for this signature in database
GPG Key ID: 3E8DC619E3C59A05
1 changed files with 1 additions and 1 deletions

View File

@ -55,7 +55,7 @@ export default class EmbeddedPage extends React.PureComponent<IProps, IState> {
};
}
private translate(s: string): string {
protected translate(s: string): string {
// default implementation - skins may wish to extend this
return sanitizeHtml(_t(s));
}