You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To reproduce: Go to https://digitalcredentials.github.io/sandbox/ and enable browser console (e.g. Ctrl-Shift-i on linux).
Click on 'Sign Credential' button. Notice in the Console two errors:
Error one:
Unable to infer path to ace from script src, use ace.config.set('basePath', 'path')
to enable dynamic loading of modes and themes or with webpack use ace/webpack-resolver
Please fix these, as they are preventing console.log from running in signCredential() (for example, try putting a console.log('ISSUING') as the first line of signCredential() in local.ts. Notice that it does not fire, although the credential json is returned.).
Also, fix the Worker error (for example, by adding the following to the AceEditor component):
setOptions={{
useWorker: false
}}
If no solution is found, please remove AceEditor, we can just use a plain textbox for the input.
The text was updated successfully, but these errors were encountered:
To reproduce: Go to https://digitalcredentials.github.io/sandbox/ and enable browser console (e.g. Ctrl-Shift-i on linux).
Click on 'Sign Credential' button. Notice in the Console two errors:
Error one:
(this is likely similar issue to securingsincity/react-ace#766 )
Error two:
Note that on localhost, this error changes to:
Please fix these, as they are preventing
console.log
from running insignCredential()
(for example, try putting aconsole.log('ISSUING')
as the first line ofsignCredential()
inlocal.ts
. Notice that it does not fire, although the credential json is returned.).Also, fix the Worker error (for example, by adding the following to the AceEditor component):
If no solution is found, please remove AceEditor, we can just use a plain textbox for the input.
The text was updated successfully, but these errors were encountered: