From 0df5a975f35097a5f4749cb3c1d92d85f7907999 Mon Sep 17 00:00:00 2001 From: Trent Larson Date: Fri, 3 Nov 2023 16:17:25 -0600 Subject: [PATCH 1/2] add bottom navigation to edit-plan page --- project.task.yaml | 4 +--- src/views/AccountViewView.vue | 2 +- src/views/NewEditProjectView.vue | 4 +++- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/project.task.yaml b/project.task.yaml index af2801c9..3abe6c4f 100644 --- a/project.task.yaml +++ b/project.task.yaml @@ -10,9 +10,8 @@ tasks: - 01 bug - we get a 404 when reloading the page anyplace except "/", and it's hard to get back - .1 test - make sure that a registration failure (including network failure) doesn't give a success message (which may have happened during board meeting) -- .1 don't allow claims if they're not registered +- .1 don't allow to even see the claim actions if they're not registered -- .2 Rename repo to crowd-sourcing-for-time (because Kickstarter is a corporation) - 01 Replace Gifted/Give in ContactsView with GiftedDialog assignee:matthew - 01 fix the Discovery map display to not show on top of bottom icons (and any other UI tweaks on the map flow) assignee-group:ui @@ -31,7 +30,6 @@ tasks: - .1 Remove notification alert visuals on home page - .5 Add infinite scroll to gifts on the home page -- .5 Allow edit of a contact name (but not the DID) - .5 bug - search for "Safari" does not find the project, but if already on the "Anywhere" tab it shows all - .2 figure out why endorser-mobile search doesn't find recently created PlanAction - .1 when creating a plan, select location and then make sure you can deselect on Android diff --git a/src/views/AccountViewView.vue b/src/views/AccountViewView.vue index a46e9ffc..06859398 100644 --- a/src/views/AccountViewView.vue +++ b/src/views/AccountViewView.vue @@ -339,11 +339,11 @@ import "dexie-export-import"; import { Component, Vue } from "vue-facing-decorator"; import { useClipboard } from "@vueuse/core"; +import QuickNav from "@/components/QuickNav.vue"; import { AppString } from "@/constants/app"; import { db, accountsDB } from "@/db/index"; import { MASTER_SETTINGS_KEY } from "@/db/tables/settings"; import { accessToken } from "@/libs/crypto"; -import QuickNav from "@/components/QuickNav.vue"; import { IIdentifier } from "@veramo/core"; import { ErrorResponse, RateLimits } from "@/libs/endorserServer"; diff --git a/src/views/NewEditProjectView.vue b/src/views/NewEditProjectView.vue index 48bcd0f3..d2b5a6a9 100644 --- a/src/views/NewEditProjectView.vue +++ b/src/views/NewEditProjectView.vue @@ -1,4 +1,5 @@