We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 86df405 commit 50866f8Copy full SHA for 50866f8
src/components/NotesPanel/NotesPanel.js
@@ -167,7 +167,7 @@ class NotesPanel extends React.PureComponent {
167
return (
168
<React.Fragment key={note.Id + getLatestActivityDate(note)}>
169
{this.renderListSeparator(notes, note)}
170
- <Note visible={this.isVisibleNote(note)} annotation={note} replies={note.getReplies()} searchInput={this.state.searchInput} rootContents={note.getContents()} />
+ <Note visible={this.isVisibleNote(note)} annotation={note} replies={[...note.getReplies()]} searchInput={this.state.searchInput} rootContents={note.getContents()} />
171
</React.Fragment>
172
);
173
})
0 commit comments