From d0ddb5fafeef4592f838837dbd1da4ef2b1563f0 Mon Sep 17 00:00:00 2001 From: MariskaMaas <40423138+MariMakes@users.noreply.github.com> Date: Mon, 3 Oct 2022 14:26:19 +0200 Subject: [PATCH] [CURA-9688] Fix View Printers in Digital Factory Send the user to the welcome page instead of the printjobs page to get a more comprehensive overview coming from the monitor page. --- plugins/UM3NetworkPrinting/resources/qml/MonitorStage.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/UM3NetworkPrinting/resources/qml/MonitorStage.qml b/plugins/UM3NetworkPrinting/resources/qml/MonitorStage.qml index e508f70cbb..33e8adf256 100644 --- a/plugins/UM3NetworkPrinting/resources/qml/MonitorStage.qml +++ b/plugins/UM3NetworkPrinting/resources/qml/MonitorStage.qml @@ -127,7 +127,7 @@ Component id: sendToFactoryButton anchors.horizontalCenter: parent.horizontalCenter text: catalog.i18nc("@button", "View printers in Digital Factory") - onClicked: Qt.openUrlExternally("https://digitalfactory.ultimaker.com/app/print-jobs?utm_source=cura&utm_medium=software&utm_campaign=monitor-view-cloud-printer-type") + onClicked: Qt.openUrlExternally("https://digitalfactory.ultimaker.com/app/welcome?utm_source=cura&utm_medium=software&utm_campaign=monitor-view-cloud-printer-type") } } }