Browse Source

Use paragraph for in favor of ordered list

Text indentation became when the text would span multiple lines

contributes to CURA-8689
c.lamboo 2 years ago
parent
commit
c892bac27f
1 changed files with 1 additions and 1 deletions
  1. 1 1
      resources/qml/WelcomePages/AddUltimakerPrinter.qml

+ 1 - 1
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 `<ol>${steps.map(step => `<li>${step}</il>`).join('')}</ol>`;
+                        return steps.join("<br />");
                     }
                 }