-
-
Notifications
You must be signed in to change notification settings - Fork 157
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update 2-playground-tutorial.md #162
Conversation
Hi there, I've followed this tutorial and I think on the function to add Todo does not validate user input for empty string. So i'm propose some minor change. Thank you
Deploy preview for nativescript-vue ready! Built with commit 6f50882 |
Thanks for the updates @muhibbudins! |
@@ -229,6 +229,7 @@ new Vue({ | |||
console.log('Task with index: ' + args.index + ' tapped'); // Logs tapped tasks in the console for debugging. | |||
}, | |||
onButtonTap() { | |||
if (this.textFieldValue === "") return // Prevent user input empty string |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Two things here:
- The semi-colon is missing at the end of the line
- Please, pay attention to the format of code comments above and below and fix it for consistency. Ideally, here you would go with something like "Prevents users from entering an empty string."
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hi @ikoevska ,
Sorry for the mistakes, i've updated the code. Thanks
Sorry about that but I missed it the first time around. We need to have this line added to all code blocks for onButtonTap (there are two more instances across the file). Otherwise, it will get lost across code sanity checks. As a note to self and @rigor789 , we should probably have a better way to include identical code in several places... Ideas? |
@ikoevska I left an idea comment here: #163 (comment) |
Addressed in #232. Closing :) |
Hi there,
I've followed this tutorial and I think on the function to add Todo does not validate user input for empty string.
So i'm propose some minor change.
Thank you