Merge pull request #700 from neuroscr/multidevice-publicchat

Defeat caching of context menu
pull/709/head
Ryan Tharp 5 years ago committed by GitHub
commit 404a2129af
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -320,7 +320,7 @@
this.titleView = new Whisper.ReactWrapperView({
className: 'title-wrapper',
Component: window.Signal.Components.ConversationHeader,
props: getHeaderProps(this.model),
props: getHeaderProps(),
});
this.updateHeader = () => this.titleView.update(getHeaderProps());
this.listenTo(this.model, 'change', this.updateHeader);

@ -293,7 +293,7 @@ export class ConversationHeader extends React.Component<Props> {
public render() {
const { id, isGroup, isPublic } = this.props;
const triggerId = `conversation-${id}`;
const triggerId = `conversation-${id}-${Date.now()}`;
const isPrivateGroup = isGroup && !isPublic;

Loading…
Cancel
Save