Merge pull request 'fix(admin): 账号管理用户名过长溢出' (#62) from fix/users-username-overflow into main
This commit is contained in:
@@ -251,7 +251,18 @@ const UsersPage: React.FC = () => {
|
||||
disabled={r.isArchived}
|
||||
onSave={(next) => saveCell(r, USER_FIELDS.username, next)}
|
||||
>
|
||||
{v}
|
||||
<span
|
||||
title={v}
|
||||
style={{
|
||||
display: 'block',
|
||||
maxWidth: '100%',
|
||||
overflow: 'hidden',
|
||||
textOverflow: 'ellipsis',
|
||||
whiteSpace: 'nowrap',
|
||||
}}
|
||||
>
|
||||
{v}
|
||||
</span>
|
||||
</EditableCell>
|
||||
),
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user