diff --git a/README.md b/README.md index 1f22caed..b27c591d 100644 --- a/README.md +++ b/README.md @@ -85,7 +85,7 @@ For your own web-push tests, change the 'vapid' URL in App.vue, and install apps - Create a new identity as prompted. Go to "Your Identity" screen and copy the ID to the clipboard. - Go back to /start and import test User `did:ethr:0x000Ee5654b9742f6Fe18ea970e32b97ee2247B51` with this this seed phrase: - `seminar accuse mystery assist delay law thing deal image undo guard initial shallow wrestle list fragile borrow velvet tomorrow awake explain test offer control` + `rigid shrug mobile smart veteran half all pond toilet brave review universe ship congress found yard skate elite apology jar uniform subway slender luggage` (Other test users are found [here](https://github.com/trentlarson/endorser-ch/blob/master/test/util.js).) - Go to "Your Contacts" screen and add the ID you copied to the clipboard, and hit "+" to add them. diff --git a/project.task.yaml b/project.task.yaml index 778787da..5befdf61 100644 --- a/project.task.yaml +++ b/project.task.yaml @@ -10,13 +10,10 @@ tasks: - .3 fix the Project-location-selection map display to not show on top of bottom icons (and any other UI tweaks on the map flow) assignee-group:ui - .5 Add infinite scroll to gifts on the home page -- .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 -- .5 fix where user 0 sees no txns from user 1 on contacts page but sees them on list page -- .1 remove the logic to exclude beforeId in list of plans after server has commit 26b25af605e715600d4f12b6416ed9fd7142d164 assignee:trent - Discuss whether the remaining tasks are worthwhile before MVP release. +- check that Android shows "back" buttons on screens without bottom tray - .1 Make give description text box into something that expands as they type? - 04 allow user to download claims, mine + ones I can see about me from others - .5 customize favicon assignee-group:ui diff --git a/src/views/DiscoverView.vue b/src/views/DiscoverView.vue index c770440c..14ff1a2d 100644 --- a/src/views/DiscoverView.vue +++ b/src/views/DiscoverView.vue @@ -358,9 +358,7 @@ export default class DiscoverView extends Vue { const plans: ProjectData[] = results.data; for (const plan of plans) { const { name, description, handleId = plan.handleId, rowid } = plan; - if (beforeId !== plan["rowid"]) { - this.projects.push({ name, description, handleId, rowid }); - } + this.projects.push({ name, description, handleId, rowid }); } } else { this.projects = results.data; diff --git a/src/views/NewEditProjectView.vue b/src/views/NewEditProjectView.vue index 9208ced4..134c1a7c 100644 --- a/src/views/NewEditProjectView.vue +++ b/src/views/NewEditProjectView.vue @@ -11,7 +11,7 @@ class="text-lg text-center px-2 py-1 absolute -left-2 -top-1" > - [New/Edit] Plan + [New/Edit] Idea @@ -24,7 +24,7 @@