Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/homepage/commit/bec1e5fff23ba6e3a971e6d6689689690c8887e6 You should set ROOT_URL correctly, otherwise the web may not work correctly.

Fix: octoprint error when progress empty ()

pull/2249/head
shamoon 1 year ago committed by GitHub
parent 1da9255578
commit bec1e5fff2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -39,7 +39,7 @@ export default function Component({ service }) {
const printingStateFalgs = ["Printing", "Paused", "Pausing", "Resuming"];
if (printingStateFalgs.includes(state)) {
const { completion } = jobStats?.progress ?? undefined;
const completion = jobStats?.progress?.completion;
if (!jobStats || !completion) {
return (

Loading…
Cancel
Save