diff --git a/project.task.yaml b/project.task.yaml index d123442..f306394 100644 --- a/project.task.yaml +++ b/project.task.yaml @@ -1,8 +1,8 @@ tasks: -- fix "any" warnings + +- mount folder for persistent sqlite DB outside of container - fix missing updateAllFeed in ContactGiftingView page -- check that Anonymous users jdenticon are nulls (not "Anonymous") - test alerts on all pages -- or refactor to new "notify" (since AlertMessage refactoring may require a change, et. ContactQRScanShowView) - .2 bug - on contacts view, click on "to" & "from" and nothing happens - 40 notifications : diff --git a/src/components/EntityIcon.vue b/src/components/EntityIcon.vue index ee69c03..c717e3f 100644 --- a/src/components/EntityIcon.vue +++ b/src/components/EntityIcon.vue @@ -5,13 +5,26 @@ import { Vue, Component, Prop } from "vue-facing-decorator"; import { toSvg } from "jdenticon"; +const BLANK_CONFIG = { + lightness: { + color: [1.0, 1.0], + grayscale: [1.0, 1.0], + }, + saturation: { + color: 0.0, + grayscale: 0.0, + }, + backColor: "#0000", +}; + @Component export default class EntityIcon extends Vue { @Prop entityId = ""; @Prop iconSize = 0; generateIdenticon() { - const svgString = toSvg(this.entityId, this.iconSize); + const config = this.entityId ? undefined : BLANK_CONFIG; + const svgString = toSvg(this.entityId, this.iconSize, config); return svgString; } } diff --git a/src/router/index.ts b/src/router/index.ts index 0fee166..e541d07 100644 --- a/src/router/index.ts +++ b/src/router/index.ts @@ -189,7 +189,7 @@ const routes: Array = [ name: "contact-gives", component: () => import( - /* webpackChunkName: "statistics" */ "../views/ContactGiftingView.vue" + /* webpackChunkName: "contact-gives" */ "../views/ContactGiftingView.vue" ), }, ]; diff --git a/src/views/ContactGiftingView.vue b/src/views/ContactGiftingView.vue index 943fea9..dbe7db4 100644 --- a/src/views/ContactGiftingView.vue +++ b/src/views/ContactGiftingView.vue @@ -26,7 +26,7 @@

@@ -108,7 +108,7 @@ interface Notification { @Component({ components: { GiftedDialog, QuickNav, EntityIcon }, }) -export default class HomeView extends Vue { +export default class ContactGiftingView extends Vue { $notify!: (notification: Notification, timeout?: number) => void; activeDid = ""; diff --git a/src/views/DiscoverView.vue b/src/views/DiscoverView.vue index 689fd28..24b62e8 100644 --- a/src/views/DiscoverView.vue +++ b/src/views/DiscoverView.vue @@ -56,7 +56,7 @@ searchAll(); " > - Remote + Anywhere {{ remoteCount }}
  • diff --git a/src/views/ProjectViewView.vue b/src/views/ProjectViewView.vue index 8c6b679..c97b75b 100644 --- a/src/views/ProjectViewView.vue +++ b/src/views/ProjectViewView.vue @@ -95,7 +95,7 @@