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.
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.
[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 other this 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.
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 other `this` 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.
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.
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