From c892bac27f8f763f8d829ab0f91a96359ca5b8f4 Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Thu, 3 Nov 2022 10:45:29 +0100 Subject: [PATCH] Use paragraph for in favor of ordered list Text indentation became when the text would span multiple lines contributes to CURA-8689 --- resources/qml/WelcomePages/AddUltimakerPrinter.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/qml/WelcomePages/AddUltimakerPrinter.qml b/resources/qml/WelcomePages/AddUltimakerPrinter.qml index 0d99b85b51..9c9154f3b3 100644 --- a/resources/qml/WelcomePages/AddUltimakerPrinter.qml +++ b/resources/qml/WelcomePages/AddUltimakerPrinter.qml @@ -74,7 +74,7 @@ Control catalog.i18nc("@info", "Follow the procedure to add a new printer"), catalog.i18nc("@info", "Your new printer will automatically appear in Cura"), ]; - return `
    ${steps.map(step => `
  1. ${step}`).join('')}
`; + return steps.join("
"); } }