Only use username half of account as fallback value
This commit is contained in:
@@ -261,6 +261,9 @@ const noFollowersMock = {
|
|||||||
export default {
|
export default {
|
||||||
title: 'owncast/Components/Followers/Followers collection',
|
title: 'owncast/Components/Followers/Followers collection',
|
||||||
component: FollowerCollection,
|
component: FollowerCollection,
|
||||||
|
parameters: {
|
||||||
|
chromatic: { diffThreshold: 0.83 },
|
||||||
|
},
|
||||||
} as ComponentMeta<typeof FollowerCollection>;
|
} as ComponentMeta<typeof FollowerCollection>;
|
||||||
|
|
||||||
const Template: ComponentStory<typeof FollowerCollection> = (args: object) => (
|
const Template: ComponentStory<typeof FollowerCollection> = (args: object) => (
|
||||||
|
|||||||
@@ -22,7 +22,9 @@ export const SingleFollower: FC<SingleFollowerProps> = ({ follower }) => (
|
|||||||
</Col>
|
</Col>
|
||||||
<Col span={18}>
|
<Col span={18}>
|
||||||
<Row className={styles.name}>
|
<Row className={styles.name}>
|
||||||
<Typography.Text ellipsis>{follower.name || follower.username}</Typography.Text>
|
<Typography.Text ellipsis>
|
||||||
|
{follower.name || follower.username.split('@', 2)[0]}
|
||||||
|
</Typography.Text>
|
||||||
</Row>
|
</Row>
|
||||||
<Row className={styles.account}>
|
<Row className={styles.account}>
|
||||||
<Typography.Text ellipsis>{follower.username}</Typography.Text>
|
<Typography.Text ellipsis>{follower.username}</Typography.Text>
|
||||||
|
|||||||
Reference in New Issue
Block a user