Skip to content

Commit

Permalink
fix a couple of lint complaints
Browse files Browse the repository at this point in the history
  • Loading branch information
rloomans committed Oct 31, 2017
1 parent 03278a3 commit 969ad7a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions client/css/tablesort.css
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ th[role=columnheader]:not(.no-sort)::after {
opacity: 0;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}

Expand Down
2 changes: 1 addition & 1 deletion client/js/components/common/announcements.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ var Announcements = createReactClass({
render: function () {
return (
<Accordion>
{ this.state.announcements.map(function (announcement) {
{this.state.announcements.map(function (announcement) {
return <Panel bsStyle={announcement.style} header={announcement.title} key={announcement.id}>
<ReactMarkdown escapeHtml source={announcement.content} />
</Panel>
Expand Down

0 comments on commit 969ad7a

Please sign in to comment.