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
When reviewing instances played by a user in the user admin page, we include a property called "Context" that's supposed to be Web for non-LTI plays and LTI for LTI plays. However, the string match is case sensitive:
{play.auth == 'LTI' ? 'LTI' : 'Web' }
And at least on production, the auth value is provided as "lti" instead of "LTI"
The text was updated successfully, but these errors were encountered:
When reviewing instances played by a user in the user admin page, we include a property called "Context" that's supposed to be
Web
for non-LTI plays andLTI
for LTI plays. However, the string match is case sensitive:And at least on production, the
auth
value is provided as"lti"
instead of"LTI"
The text was updated successfully, but these errors were encountered: