From 2f0f0847fbb18f67a8779660304f38d531740aa8 Mon Sep 17 00:00:00 2001 From: pietervdvn Date: Tue, 17 May 2022 03:22:58 +0200 Subject: [PATCH] Whitespace alignments --- Models/ThemeConfig/TagRenderingConfig.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Models/ThemeConfig/TagRenderingConfig.ts b/Models/ThemeConfig/TagRenderingConfig.ts index 5547e26699..5b95f6e54a 100644 --- a/Models/ThemeConfig/TagRenderingConfig.ts +++ b/Models/ThemeConfig/TagRenderingConfig.ts @@ -516,7 +516,7 @@ export default class TagRenderingConfig { `This rendering asks information about the property `, Link.OsmWiki(this.freeform.key), new Paragraph(new Combine([ - "This is rendered with", + "This is rendered with ", new FixedUiElement(this.render.txt).SetClass("literalcode bold") ])) @@ -531,7 +531,7 @@ export default class TagRenderingConfig { new Combine( [ new FixedUiElement(m.then.txt).SetClass("bold"), - "corresponds with", + "corresponds with ", m.if.asHumanString(true, false, {}) ] ) @@ -550,10 +550,10 @@ export default class TagRenderingConfig { let condition : BaseUIElement = undefined if(this.condition !== undefined && !this.condition?.matchesProperties({})){ - condition = new Combine(["Only visible if", + condition = new Combine(["Only visible if ", new FixedUiElement( this.condition.asHumanString(false, false, {}) ).SetClass("code") - , "is shown"]) + , " is shown"]) } let group : BaseUIElement = undefined