diff --git a/static/app-strings.json b/static/app-strings.json index 5373770c1..330b207c8 100644 --- a/static/app-strings.json +++ b/static/app-strings.json @@ -2184,5 +2184,7 @@ "From comments": "From comments", "From search": "From search", "Manage tags": "Manage tags", + "No Reposts": "No Reposts", + "You haven't reposted anything yet. Do it.": "You haven't reposted anything yet. Do it.", "--end--": "--end--" } diff --git a/ui/component/claimList/view.jsx b/ui/component/claimList/view.jsx index bdfd5450a..456c23e0f 100644 --- a/ui/component/claimList/view.jsx +++ b/ui/component/claimList/view.jsx @@ -44,6 +44,7 @@ type Props = { collectionId?: string, showNoSourceClaims?: boolean, onClick?: (e: any, claim?: ?Claim, index?: number) => void, + noEmpty: boolean, }; export default function ClaimList(props: Props) { @@ -74,8 +75,11 @@ export default function ClaimList(props: Props) { collectionId, showNoSourceClaims, onClick, + noEmpty, } = props; + console.log('noempty', noEmpty); + const [currentSort, setCurrentSort] = usePersistedState(persistedStorageKey, SORT_NEW); // Exclude prefix uris in these results variables. We don't want to show @@ -134,7 +138,9 @@ export default function ClaimList(props: Props) { showNoSourceClaims={showNoSourceClaims} /> ))} - {!timedOut && urisLength === 0 && !loading &&