Hi All,
Is anyone else having trouble accessing the drop-down menus on the Canvas Live API site?
Whenever I try to expand one of the rows, I just get no response from the page.
Hi @wguida,
I have seen some chatter on this issue on a different chat platform, and one of my colleagues from UMich, Matt Jones, posted a temporary workaround there. I'll paste it here:
---
Local override method:
this.isCollection = this.dataType && (this.dataType.toLowerCase() === 'array' || this.dataType.toLowerCase() === 'list' || this.dataType.toLowerCase() === 'set');
to
this.isCollection = Array.isArray(this.dataType) ? true : this.dataType && ['array', 'list', 'set'].includes(this.dataType.toLowerCase());
Refresh.
Someone else there was informed by Canvas support that an official fix is scheduled to go to production on Feb 26.
I hope this info helps!
-Chris
@wguida
I don't use the Live API, but I went and checked. Yes, there is a problem with it.
If you open the Developer Tools console and reload the page, there are a bunch of warnings about missing Swagger information and there's an uncaught type error. That error stops any additional JavaScript in the file from running and so nothing seems to work.
If I access to the student card I can see the recent messages, but I would like to see all the messages, not only the recent. Thank you
We are testing a third party integration from our college's ERP provider. We have connected it to our test environment. It seems to have very few features and options. So, just wondering if there is a way to monitor API calls. I was able to use the DAPClient in Python to download canvas_logs in our production environment.…
To the Canvas Product Team, I am writing to request a new global or course-level setting for the Rich Content Editor (RCE). Currently, when images are uploaded or embedded, Canvas defaults to displaying the full image. For many lab-based and data-heavy courses—such as my current molecular biology lab course—we often need…
Our Spanish department uses New Quizzes/Essay question type for students to record themselves talking using the record media function in the RCE. They did this all last year. However, now when the students log in to take the quize, the upload/record media icon isn't available to them. Is this a new issues? Anyone have any…
I am trying to use Learning Outcomes for my course which has many sections each term. We currently have no institutional, school or program outcomes. I created a set of outcomes for Section 1 of my course. I then labelled every question in the item banks I was using in my first quiz (New Quiz) of the semester. I got a nice…