Aria

Results 10 comments of Aria

@techytushar Thank you. However, I can't claim the task at https://codein.withgoogle.com/tasks/5564398660747264/ as it is listed as a beginner task and I've already finished off the limit of 2 beginner tasks.

@techytushar Thank you so much! I'll work on the fixes and submit again tomorrow. Thanks for the feedback!

@techytushar - I researched the issue and it appears that it is related to how Django handles unicode characters. From the [documentation](https://docs.djangoproject.com/en/2.1/ref/unicode/): > Django adopts a “lazy” approach to decoding...

Hi, I made the following changes in views.py in lines 484 and 485 to get to the source of the problem- However after modification, in the database, only the name...

@techytushar I have fixed the form validation for now as the other issue seems to be related to the database.

At present, using the available code on the page, I connected the button click action to the modal (relevant code snippets below): ``` this.toggleModifyDialog( ) } > Modify ``` and...

Do we need to get the demo information from the database? Because this information is already available in the state object and other React variables. For example, on the "My...

If we go to nonGHUserProfile.js and do a console.log like so: ``` getDeployed(this.props.user.id) .then(alldeployedRepos => { let tmp = JSON.parse(alldeployedRepos); let allDeployed = []; while (tmp.length) { console.log(tmp.splice(0,3)); //my code...

So my current plan is to create a screen that allows the user to modify the above mentioned object. Then I will call on the function named 'updateNonGHDemoModel' in 'nonghDemoModelAction.js'....

@RohanCheri That seems right, I get the same error when I access it on local. Any thoughts on the optimal way to fix this?