From 432ee8c34b86eb0d24079e069a9d6146a83c7271 Mon Sep 17 00:00:00 2001 From: Christian Neumann Date: Sun, 15 Nov 2020 15:33:18 +0100 Subject: [PATCH] Fix generator text. --- UI/CustomGenerator/CustomGeneratorPanel.ts | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/UI/CustomGenerator/CustomGeneratorPanel.ts b/UI/CustomGenerator/CustomGeneratorPanel.ts index d8c1999..a7c1189 100644 --- a/UI/CustomGenerator/CustomGeneratorPanel.ts +++ b/UI/CustomGenerator/CustomGeneratorPanel.ts @@ -105,10 +105,9 @@ export default class CustomGeneratorPanel extends UIElement { } if (ud.csCount <= State.userJourney.themeGeneratorReadOnlyUnlock) { return new Combine([ - "

Too little experience/h3>", - `Creating your own (readonly) themes can only be done if you have more then ${State.userJourney.themeGeneratorReadOnlyUnlock} changesets made`, - `Making a theme including survey options can be done at ${State.userJourney.themeGeneratorFullUnlock} changesets`, - this.loginButton + "

Too little experience

", + `

Creating your own (readonly) themes can only be done if you have more then ${State.userJourney.themeGeneratorReadOnlyUnlock} changesets made

`, + `

Making a theme including survey options can be done at ${State.userJourney.themeGeneratorFullUnlock} changesets

` ]).Render(); } return this.mainPanel.Render()