Merge pull request #5159 from matrix-org/t3chguy/react-err

Fix react error about functional components can't take refs
This commit is contained in:
Michael Telatynski 2020-09-01 09:13:42 +01:00 committed by GitHub
commit a13cc0ce6a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -15,13 +15,13 @@ See the License for the specific language governing permissions and
limitations under the License.
*/
import React from "react";
import React, {forwardRef} from "react";
export default ({mxEvent}) => {
export default forwardRef(({mxEvent}, ref) => {
const text = mxEvent.getContent().body;
return (
<span className="mx_UnknownBody">
<span className="mx_UnknownBody" ref={ref}>
{ text }
</span>
);
};
});