mention preserving ordering in comment

This commit is contained in:
Richard van der Hoff 2017-07-06 10:47:15 +01:00
parent 6a2d6b2e6e
commit 4f8d9d869e

View file

@ -143,7 +143,7 @@ module.exports = React.createClass({
if (this.props.showUrlPreview && !this.state.links.length) { if (this.props.showUrlPreview && !this.state.links.length) {
var links = this.findLinks(this.refs.content.children); var links = this.findLinks(this.refs.content.children);
if (links.length) { if (links.length) {
// de-dup the links // de-dup the links (but preserve ordering)
const seen = new Set(); const seen = new Set();
links = links.filter((link) => { links = links.filter((link) => {
if (seen.has(link)) return false; if (seen.has(link)) return false;