From 835161c52bdc604b61e04343c17c5aa146561b30 Mon Sep 17 00:00:00 2001 From: Pratap2018 Date: Thu, 11 Jan 2024 14:43:28 +0530 Subject: [PATCH] update --- .dockerignore | 2 +- src/App.vue | 2 +- src/views/Apps.vue | 2 +- src/views/playground/OrgSidebar.vue | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.dockerignore b/.dockerignore index 7614e07..7d8a209 100644 --- a/.dockerignore +++ b/.dockerignore @@ -1,3 +1,3 @@ docker-compose.yml -./node_modules +node_modules .env \ No newline at end of file diff --git a/src/App.vue b/src/App.vue index 0977f99..dc714bb 100644 --- a/src/App.vue +++ b/src/App.vue @@ -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; diff --git a/src/views/Apps.vue b/src/views/Apps.vue index da95282..71a2a03 100644 --- a/src/views/Apps.vue +++ b/src/views/Apps.vue @@ -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 = ""; diff --git a/src/views/playground/OrgSidebar.vue b/src/views/playground/OrgSidebar.vue index f40054b..538d7e6 100644 --- a/src/views/playground/OrgSidebar.vue +++ b/src/views/playground/OrgSidebar.vue @@ -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}`);