forked from jsnbuchanan/crowd-funder-for-time-pwa
fix problem with anonymous contributor; refine tasks
This commit is contained in:
@@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||
|
||||
|
||||
## [Unreleased]
|
||||
### Added
|
||||
- Agent who can also edit a project
|
||||
### Fixed
|
||||
- Cannot declare anonymous gift
|
||||
|
||||
|
||||
|
||||
## [0.2.7] - 2024.01.12
|
||||
|
||||
@@ -1,12 +1,13 @@
|
||||
|
||||
tasks:
|
||||
|
||||
- create an identifier automatically, with a message that they can import a different one
|
||||
- choose an agent - make a contact chooser
|
||||
- make set-name request yellow
|
||||
- make the "give" on contact screen work like other give (allowing donation vs current blank)
|
||||
- create an identifier automatically, with a message that they can import a different one
|
||||
- make give directly on an offer
|
||||
- make a confirmation directly on a give
|
||||
- make give action executable right from an offer
|
||||
- make a confirmation action executable right from a give
|
||||
- link to the project claim from the project screen
|
||||
- check that 'show more contacts' from the contact-give-list on the project screen includes project ID
|
||||
- on ClaimView, the "ask someone" should refer to "visible" IDs, or to confirmations only if confirmations are visible
|
||||
- give feedback when import is completed
|
||||
|
||||
@@ -154,7 +154,7 @@ export default class GiftedDialog extends Vue {
|
||||
|
||||
open(giver: GiverInputInfo) {
|
||||
this.description = "";
|
||||
this.giver = giver;
|
||||
this.giver = giver || {};
|
||||
if (!this.giver.name) {
|
||||
this.giver.name = didInfo(
|
||||
this.giver.did,
|
||||
|
||||
Reference in New Issue
Block a user