Yuki Takei 3 سال پیش
والد
کامیت
9a6dbf768e

+ 1 - 1
packages/app/src/components/Admin/AuditLog/ActivityTable.tsx

@@ -47,7 +47,7 @@ export const ActivityTable : FC<Props> = (props: Props) => {
                 <td>
                 <td>
                   { activity.user != null && (
                   { activity.user != null && (
                     <>
                     <>
-                      <UserPicture user={activity.user} className="picture rounded-circle" />
+                      <UserPicture user={activity.user} />
                       <a className="ml-2" href={pagePathUtils.userPageRoot(activity.user)}>{activity.snapshot?.username}</a>
                       <a className="ml-2" href={pagePathUtils.userPageRoot(activity.user)}>{activity.snapshot?.username}</a>
                     </>
                     </>
                   )}
                   )}

+ 1 - 1
packages/app/src/components/Admin/UserGroupDetail/UserGroupUserTable.tsx

@@ -44,7 +44,7 @@ export const UserGroupUserTable = (props: Props): JSX.Element => {
           return (
           return (
             <tr key={relation._id}>
             <tr key={relation._id}>
               <td>
               <td>
-                <UserPicture user={relatedUser} className="picture rounded-circle" />
+                <UserPicture user={relatedUser} />
               </td>
               </td>
               <td>
               <td>
                 <strong>{relatedUser.username}</strong>
                 <strong>{relatedUser.username}</strong>

+ 1 - 1
packages/app/src/components/Admin/Users/UserTable.jsx

@@ -188,7 +188,7 @@ class UserTable extends React.Component {
                 return (
                 return (
                   <tr data-testid="user-table-tr" key={user._id}>
                   <tr data-testid="user-table-tr" key={user._id}>
                     <td>
                     <td>
-                      <UserPicture user={user} className="picture rounded-circle" />
+                      <UserPicture user={user} />
                     </td>
                     </td>
                     <td>{this.getUserStatusLabel(user.status)} {this.getUserAdminLabel(user.admin)}</td>
                     <td>{this.getUserStatusLabel(user.status)} {this.getUserAdminLabel(user.admin)}</td>
                     <td>
                     <td>