diff --git a/src/main/java/org/gcube/portlets/user/newsfeed/client/panels/NewsFeedPanel.java b/src/main/java/org/gcube/portlets/user/newsfeed/client/panels/NewsFeedPanel.java index ae8d399..75f1bbd 100644 --- a/src/main/java/org/gcube/portlets/user/newsfeed/client/panels/NewsFeedPanel.java +++ b/src/main/java/org/gcube/portlets/user/newsfeed/client/panels/NewsFeedPanel.java @@ -284,7 +284,6 @@ public class NewsFeedPanel extends Composite { "We're sorry, it seems you used an invalid character, please check the hashtag")); return; } - GWT.log("Found hashtag " + hashtag); showFeedsByHashtag(hashtag); filterPanel.removeFilterSelected(); } @@ -295,7 +294,7 @@ public class NewsFeedPanel extends Composite { } //adjustments in the UI Depending on the scope if (result.isInfrastructure()) { - filterPanelWrapper.setVisible(true); + filterPanelWrapper.setVisible(getFeedToShowId() == null); showFeedTimelineSource = result.isShowTimelineSourceLabel(); isInfrastructure = true; } @@ -380,7 +379,7 @@ public class NewsFeedPanel extends Composite { " "; newsPanel.add(new HTML("
")); - } else{ + } else { newsPanel.add(new ResultsFor("selected post", "")); newsPanel.setHeight(""); newsPanel.setHorizontalAlignment(HasAlignment.ALIGN_LEFT);