track whether widget should be hidden on the event, as well as persisting it in localStorage
This commit is contained in:
parent
ff2885087d
commit
d414127f80
1 changed files with 3 additions and 2 deletions
|
@ -71,8 +71,9 @@ module.exports = React.createClass({
|
||||||
// FIXME: factor this out with LinkPreviewWidget
|
// FIXME: factor this out with LinkPreviewWidget
|
||||||
// FIXME: somehow propagate this to the EventTile such that it updates itself and realises the link has rematerialised
|
// FIXME: somehow propagate this to the EventTile such that it updates itself and realises the link has rematerialised
|
||||||
global.localStorage.removeItem("hide_preview_" + this.props.mxEvent.getId());
|
global.localStorage.removeItem("hide_preview_" + this.props.mxEvent.getId());
|
||||||
if (this.props.onFinished) this.props.onFinished();
|
|
||||||
}
|
}
|
||||||
|
this.props.mxEvent.widgetHidden = false;
|
||||||
|
if (this.props.onFinished) this.props.onFinished();
|
||||||
},
|
},
|
||||||
|
|
||||||
render: function() {
|
render: function() {
|
||||||
|
|
Loading…
Reference in a new issue