Skip to content

Commit

Permalink
And now simple tweet actions can be taken from the triage view
Browse files Browse the repository at this point in the history
That is, we now just open the tweet in a new tab :)

Closes #30
  • Loading branch information
keithamoss committed Dec 19, 2018
1 parent 7263d51 commit 4d7e8c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/triage/TweetColumn/TweetColumn.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ class TweetColumn extends React.Component<TComponentProps, {}> {
return (
<CellMeasurer key={key} cache={this._cache} columnIndex={0} parent={parent} rowIndex={index}>
<div style={tweetStyle}>
<Tweet key={tweetId} data={tweets[tweetId].data} />
<Tweet key={tweetId} data={tweets[tweetId].data} linkProps={{ target: "_blank", rel: "noreferrer" }} />
<Divider />
<div className={classes.actionBar}>
<Button
Expand Down

0 comments on commit 4d7e8c1

Please sign in to comment.