add separate screen for amount confirmations #15
Merged
anomalist
merged 13 commits from separate-dbs
into master
2 years ago
Loading…
Reference in new issue
There is no content yet.
Delete Branch 'separate-dbs'
Deleting a branch is permanent. It CANNOT be undone. 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.
@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 otherthis
value)... 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 2 years ago1d47a90836
into master 2 years ago1d47a90836
.