diff --git a/src/components/JournalEntries.tsx b/src/components/JournalEntries.tsx index 43402c5..0692568 100644 --- a/src/components/JournalEntries.tsx +++ b/src/components/JournalEntries.tsx @@ -26,6 +26,7 @@ class JournalEntries extends React.PureComponent { props: { journal: EteSync.Journal, entries: Immutable.List, + uid?: string, }; constructor(props: any) { @@ -64,6 +65,11 @@ class JournalEntries extends React.PureComponent { name = 'Error processing entry'; uid = ''; } + + if (this.props.uid && (this.props.uid !== uid)) { + return undefined; + } + return (