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 replicate, create a new Schema using the editor and then try to create an Instance of the Schema you just created - it won't show up until you refresh the page.
The issue is that upon launching the Clotho client, the client makes a query call to the server for a list of all the Schemas but does not make this call/"refresh" the list when a new Schema is created. Refreshing forces a new Clotho.query({"schema" : SCHEMA_ALL}, {mute : true}) call in clothoSchemas.js to be made.
Fix is to trigger a new Clotho.query call when scope.save in clothoEditor.js is run/successful.
The text was updated successfully, but these errors were encountered:
To replicate, create a new Schema using the editor and then try to create an Instance of the Schema you just created - it won't show up until you refresh the page.
The issue is that upon launching the Clotho client, the client makes a query call to the server for a list of all the Schemas but does not make this call/"refresh" the list when a new Schema is created. Refreshing forces a new
Clotho.query({"schema" : SCHEMA_ALL}, {mute : true})
call in clothoSchemas.js to be made.Fix is to trigger a new Clotho.query call when
scope.save
in clothoEditor.js is run/successful.The text was updated successfully, but these errors were encountered: