Forgot to trim the string

This commit is contained in:
Bruno Antunes 2024-02-21 10:33:30 +00:00
parent f61b187402
commit d12c81e51f
1 changed files with 1 additions and 1 deletions

View File

@ -138,7 +138,7 @@ new Vue({
const clients = await this.api.getClients();
this.clients = clients.map((client) => {
if (client.name.includes('@') && client.name.includes('.')) {
client.avatar = `https://gravatar.com/avatar/${sha256(client.name.toLowerCase())}.jpg`;
client.avatar = `https://gravatar.com/avatar/${sha256(client.name.toLowerCase().trim())}.jpg`;
}
if (!this.clientsPersist[client.id]) {