]> cat aescling's git repositories - mastodon.git/commitdiff
[Glitch, partial] Change appearance of account cards in web UI
authorEugen Rochko <eugen@zeonfederated.com>
Mon, 7 Mar 2022 10:38:52 +0000 (11:38 +0100)
committeraescling <aescling+gitlab@cat.family>
Thu, 17 Nov 2022 05:28:24 +0000 (00:28 -0500)
Port remaining changes from dba4be1038063845a74e83aaa85d6ab08d5625dd to glitch-soc

Signed-off-by: Claire <claire.github-309c@sitedethib.com>
app/javascript/flavours/glitch/features/explore/suggestions.js

index 9dbf49b4f130cdf8ca28fcaf77cb0b4a3769065d..7e513fa96e438ae7487826eec49581dc6d4de698 100644 (file)
@@ -1,7 +1,7 @@
 import React from 'react';
 import PropTypes from 'prop-types';
 import ImmutablePropTypes from 'react-immutable-proptypes';
-import Account from 'flavours/glitch/containers/account_container';
+import AccountCard from 'flavours/glitch/features/directory/components/account_card';
 import LoadingIndicator from 'flavours/glitch/components/loading_indicator';
 import { connect } from 'react-redux';
 import { fetchSuggestions } from 'flavours/glitch/actions/suggestions';
@@ -29,9 +29,9 @@ class Suggestions extends React.PureComponent {
     const { isLoading, suggestions } = this.props;
 
     return (
-      <div className='explore__links'>
-        {isLoading ? (<LoadingIndicator />) : suggestions.map(suggestion => (
-          <Account key={suggestion.get('account')} id={suggestion.get('account')} />
+      <div className='explore__suggestions'>
+        {isLoading ? <LoadingIndicator /> : suggestions.map(suggestion => (
+          <AccountCard key={suggestion.get('account')} id={suggestion.get('account')} />
         ))}
       </div>
     );