mirror of
https://github.com/open-webui/open-webui
synced 2025-01-18 00:30:51 +00:00
handle names with trailing whitespace
This commit is contained in:
parent
ac470e64e0
commit
4200ad111c
@ -109,9 +109,8 @@ export const generateInitialsImage = (name) => {
|
||||
ctx.font = '40px Helvetica';
|
||||
ctx.textAlign = 'center';
|
||||
ctx.textBaseline = 'middle';
|
||||
const firstNameInitial = name[0];
|
||||
const lastNameInitial = name.lastIndexOf(' ') > -1 ? name[name.lastIndexOf(' ') + 1] : '';
|
||||
const initials = `${firstNameInitial}${lastNameInitial}`.toUpperCase();
|
||||
|
||||
const initials = name.trim().length > 0 ? name[0] + (name.trim().split(' ').length > 1 ? name[name.lastIndexOf(' ') + 1] : '') : '';
|
||||
|
||||
ctx.fillText(initials.toUpperCase(), canvas.width / 2, canvas.height / 2);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user