Hello Jeff,
Does it affect the functionality of your app?
Can you update the screenshot -- it doesn't show the line with error?
Catch up wih the Appery.io community on our forum. Here you'll find information on the lastest questions and issues Appery.io developers are discussing.
https://forum.appery.io/
Hello Jeff,
Does it affect the functionality of your app?
Can you update the screenshot -- it doesn't show the line with error?
Hi Jeff,
Please share the application with a href="mailto:support@appery.io" rel="nofollow"support@appery.io/a and tell us how to reproduce the error.
Hello! On My_Bucket_List page in creat_mylis service in mapping to request parameter acl there is an incorrect code:
prevar acl = <;
acl{value}= { "read": true,"write": true };
return acl;/pre
Please try the following one instead
prevar acl = {};
acl[value]= { "read": true,"write": true };
return acl;/pre
Hello,
There is syntax error on My_Bucket_List page in creat_mylis service in mapping to request parameter acl. You should use
pre
var acl = {};
/pre
instead of
pre
ar acl = {};
/pre