summaryrefslogtreecommitdiffstats
path: root/ui/src/components/user-listing.tsx
diff options
context:
space:
mode:
authorDessalines <tyhou13@gmx.com>2020-06-09 17:17:24 -0400
committerDessalines <tyhou13@gmx.com>2020-06-09 17:17:24 -0400
commitbd26e4e9c1b146163ee839de0a45bb9354efd1f2 (patch)
tree0c30425a32666f7597fb1d9362edcf199dc75a7d /ui/src/components/user-listing.tsx
parente583e45d9a2221b3ed2a743cfa172abcd2a1d6a0 (diff)
Fixing some front end pictshare to pictrs conversions.
Diffstat (limited to 'ui/src/components/user-listing.tsx')
-rw-r--r--ui/src/components/user-listing.tsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/src/components/user-listing.tsx b/ui/src/components/user-listing.tsx
index 1f136e00..ea87fd3a 100644
--- a/ui/src/components/user-listing.tsx
+++ b/ui/src/components/user-listing.tsx
@@ -1,7 +1,7 @@
import { Component } from 'inferno';
import { Link } from 'inferno-router';
import { UserView } from '../interfaces';
-import { pictshareAvatarThumbnail, showAvatars } from '../utils';
+import { pictrsAvatarThumbnail, showAvatars } from '../utils';
interface UserOther {
name: string;
@@ -25,7 +25,7 @@ export class UserListing extends Component<UserListingProps, any> {
<img
height="32"
width="32"
- src={pictshareAvatarThumbnail(user.avatar)}
+ src={pictrsAvatarThumbnail(user.avatar)}
class="rounded-circle mr-2"
/>
)}