add separate screen for amount confirmations #15
Reference in New Issue
Block a user
Delete Branch "separate-dbs"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Well, this is now a significant one:
It has the separate screen for seeing all given items and for confirming them.
It also has the ability to switch between accounts. Just go to /import-account and import another one and you can switch between them on the /account screen.
I plan to do one more round of tests tomorrow, and maybe some small tweaks before I'm ready for prime time, but this is ready for review.
@@ -0,0 +58,4 @@@Options({})export default class ContactsView extends Vue {contact: Contact | null = null;At first I tried this:
contact?: Contact;... but it complained at me in the console:
[Vue warn]: Property "contactName" was accessed during render but is not defined on instance.... and it wouldn't load my information -- even though the "contacts.get" a few lines lower loads the right entry, the rest of the page wouldn't recognize that I set
this.contact(or any otherthisvalue)... it was like the page was broken.So... this works, but it doesn't seem clean, and if there's a better way than I'm all ears.
Have you tried:
contact: Nullable<Contact>;?
Both lint & Web Storm say that is not defined
WIP: add separate screen for amount confirmationsto add separate screen for amount confirmations