-
{subCount} {subCount !== 1 ? __('Followers') : __('Follower')}
diff --git a/ui/page/following/view.jsx b/ui/page/following/view.jsx
index 5de0a1c9c..fd9412826 100644
--- a/ui/page/following/view.jsx
+++ b/ui/page/following/view.jsx
@@ -24,7 +24,7 @@ function FollowingPage(props: Props) {
const viewingSuggestedSubs = urlParams.get('view') || !hasSubscriptions;
function onClick() {
- let url = `/$/${PAGES.FOLLOWING}`;
+ let url = `/$/${PAGES.TAGS_FOLLOWING_MANAGE}`;
if (!viewingSuggestedSubs) {
url += '?view=discover';
}
diff --git a/ui/page/search/view.jsx b/ui/page/search/view.jsx
index ee0b86734..dc29a604d 100644
--- a/ui/page/search/view.jsx
+++ b/ui/page/search/view.jsx
@@ -60,30 +60,29 @@ export default function SearchPage(props: Props) {
)}
-
- }
- headerAltControls={
-
- {__('Find what you were looking for?')}
-
- }
- />
-
+ }
+ headerAltControls={
+
+ {__('Find what you were looking for?')}
+ onFeedbackPositive(urlQuery)}
+ icon={ICONS.YES}
+ />
+ onFeedbackNegative(urlQuery)}
+ icon={ICONS.NO}
+ />
+
+ }
+ />
+
{__('These search results are provided by LBRY, Inc.')}
)}
diff --git a/ui/page/tags/view.jsx b/ui/page/tags/view.jsx
index e67ab613a..9b28af60b 100644
--- a/ui/page/tags/view.jsx
+++ b/ui/page/tags/view.jsx
@@ -7,6 +7,7 @@ import Button from 'component/button';
import useHover from 'effects/use-hover';
import analytics from 'analytics';
import HiddenNsfw from 'component/common/hidden-nsfw';
+import Icon from 'component/common/icon';
type Props = {
location: { search: string },
@@ -46,6 +47,12 @@ function TagsPage(props: Props) {
return (
+
+ {tag}
+
+ }
tags={tags}
hiddenNsfwMessage={
}
meta={
diff --git a/ui/page/tagsFollowing/view.jsx b/ui/page/tagsFollowing/view.jsx
index 3961b1335..c988c9e94 100644
--- a/ui/page/tagsFollowing/view.jsx
+++ b/ui/page/tagsFollowing/view.jsx
@@ -35,7 +35,7 @@ function DiscoverPage(props: Props) {
icon={ICONS.EDIT}
label={__('Manage')}
requiresAuth={IS_WEB}
- navigate={`/$/${PAGES.FOLLOWING}`}
+ navigate={`/$/${PAGES.TAGS_FOLLOWING_MANAGE}`}
/>
}
/>
diff --git a/ui/scss/component/_claim-list.scss b/ui/scss/component/_claim-list.scss
index 1a4acfaf2..5f9a685ae 100644
--- a/ui/scss/component/_claim-list.scss
+++ b/ui/scss/component/_claim-list.scss
@@ -6,33 +6,29 @@
.claim-list__header {
display: flex;
+ flex-wrap: wrap;
align-items: center;
- min-height: 3rem;
margin: var(--spacing-medium) 0;
margin-top: 0;
font-size: var(--font-body);
- fieldset-section {
- margin-top: 0;
- margin-bottom: 0;
+ .spinner {
+ margin-left: var(--spacing-medium);
}
}
.claim-list__header--small {
- min-height: 0;
color: var(--color-text-subtitle);
}
.claim-list__dropdown {
padding: 0 var(--spacing-medium);
- padding-right: var(--spacing-large);
- margin-bottom: 0;
margin-left: var(--spacing-medium);
+ margin-right: var(--spacing-medium);
@media (max-width: $breakpoint-small) {
- font-size: var(--font-small);
- padding: 0 var(--spacing-small);
- padding-right: var(--spacing-large);
+ margin-top: var(--spacing-small);
+ margin-left: 0;
}
}