Browse Source

fix problem with anonymous contributor; refine tasks

starred-projects
Trent Larson 8 months ago
parent
commit
9f595040d8
  1. 5
      CHANGELOG.md
  2. 7
      project.task.yaml
  3. 2
      src/components/GiftedDialog.vue

5
CHANGELOG.md

@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased] ## [Unreleased]
### Added
- Agent who can also edit a project
### Fixed
- Cannot declare anonymous gift
## [0.2.7] - 2024.01.12 ## [0.2.7] - 2024.01.12

7
project.task.yaml

@ -1,12 +1,13 @@
tasks: tasks:
- create an identifier automatically, with a message that they can import a different one
- choose an agent - make a contact chooser - choose an agent - make a contact chooser
- make set-name request yellow - make set-name request yellow
- make the "give" on contact screen work like other give (allowing donation vs current blank) - 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 action executable right from an offer
- make give directly on an offer - make a confirmation action executable right from a give
- make a confirmation directly on 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 - 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 - on ClaimView, the "ask someone" should refer to "visible" IDs, or to confirmations only if confirmations are visible
- give feedback when import is completed - give feedback when import is completed

2
src/components/GiftedDialog.vue

@ -154,7 +154,7 @@ export default class GiftedDialog extends Vue {
open(giver: GiverInputInfo) { open(giver: GiverInputInfo) {
this.description = ""; this.description = "";
this.giver = giver; this.giver = giver || {};
if (!this.giver.name) { if (!this.giver.name) {
this.giver.name = didInfo( this.giver.name = didInfo(
this.giver.did, this.giver.did,

Loading…
Cancel
Save