Skip to content
Snippets Groups Projects
Commit 43c61b9d authored by Atte Keinänen's avatar Atte Keinänen Committed by Kyle Doherty
Browse files

Fix Safari input render bug with the good old redraw hack (#5514)

parent 452f4cf8
No related branches found
No related tags found
No related merge requests found
/* eslint "react/prop-types": "warn" */
import React, { Component } from "react";
import ReactDOM from "react-dom";
import PropTypes from "prop-types";
import {forceRedraw} from "metabase/lib/dom";
import { KEYCODE_ENTER, KEYCODE_ESCAPE } from "metabase/lib/keyboard";
......@@ -33,7 +35,10 @@ export default class TextWidget extends Component {
componentWillReceiveProps(nextProps) {
if (this.props.value !== nextProps.value) {
this.setState({ value: nextProps.value });
this.setState({ value: nextProps.value }, () => {
// HACK: Address Safari rendering bug which causes https://github.com/metabase/metabase/issues/5335
forceRedraw(ReactDOM.findDOMNode(this));
});
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment