Browse Source

Forgot to trim the string

pull/865/head
Bruno Antunes 1 year ago
parent
commit
d12c81e51f
  1. 2
      src/www/js/app.js

2
src/www/js/app.js

@ -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]) {

Loading…
Cancel
Save