Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
Pratap2018 committed Jan 11, 2024
1 parent 329e0d9 commit 835161c
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .dockerignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
docker-compose.yml
./node_modules
node_modules
.env
2 changes: 1 addition & 1 deletion src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -392,7 +392,7 @@ export default {
}
},
getProfileIcon(name) {
return "https://avatars.dicebear.com/api/identicon/" + name + ".svg";
return "https://api.dicebear.com/7.x/identicon/svg?seed="+name;
},
logoutAll() {
this.showIcon = false;
Expand Down
2 changes: 1 addition & 1 deletion src/views/Apps.vue
Original file line number Diff line number Diff line change
Expand Up @@ -573,7 +573,7 @@ export default {
return this.truncate(appName, 25);
},
getProfileIcon(name) {
return "https://avatars.dicebear.com/api/identicon/" + name + ".svg";
return "https://api.dicebear.com/7.x/identicon/svg?seed="+name;
},
onHfFlashClick() {
this.apiKeySecret = "";
Expand Down
2 changes: 1 addition & 1 deletion src/views/playground/OrgSidebar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@ export default {
}
},
getProfileIcon(name) {
return "https://avatars.dicebear.com/api/identicon/" + name + ".svg"
return "https://api.dicebear.com/7.x/identicon/svg?seed="+name
},
ssePopulateOrg(id, store) {
const sse = new EventSource(`${this.$config.studioServer.ORG_SSE}${id}`);
Expand Down

0 comments on commit 835161c

Please sign in to comment.