Skip to content

Commit

Permalink
fixing stuffs
Browse files Browse the repository at this point in the history
  • Loading branch information
jaesivsm committed Oct 1, 2016
1 parent 989ce13 commit 5fad6e5
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 0 additions & 2 deletions src/web/controllers/cluster.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,6 @@ def _enrich_cluster(self, cluster, article,
cluster.feeds.append(article.feed)
if article.category_id:
cluster.categories.append(article.category)
if article.feed.icon_url:
cluster.icons.append(article.feed.icon)
db.session.add(cluster)
db.session.add(article)
db.session.commit()
Expand Down
3 changes: 3 additions & 0 deletions src/web/static/css/one-page-app.css
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,9 @@
padding: 5px 8px;
cursor: pointer;
}
#middle-panel div.list-group-item a>img{
margin-right: 3px;
}
#middle-panel div.list-group-item:hover {
background-color: #f0f0f0;
}
Expand Down
2 changes: 1 addition & 1 deletion src/web/views/api/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ def post(self):
>>> payload
[{attr1: val1, attr2: val2}, {attr1: val1, attr2: val2}]
"""
status, fail_count, results = 200, 0, []
status, fail_count, results = 201, 0, []

class Proxy:
pass
Expand Down

0 comments on commit 5fad6e5

Please sign in to comment.