From 5b01320809938d8b3fbec95996b75d290224ae7c Mon Sep 17 00:00:00 2001 From: mike12345567 Date: Tue, 27 Oct 2020 13:25:12 +0000 Subject: [PATCH] Linting. --- .../components/userInterface/GenericBindingPopover.svelte | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/packages/builder/src/components/userInterface/GenericBindingPopover.svelte b/packages/builder/src/components/userInterface/GenericBindingPopover.svelte index f084f08989..0b53ab91ad 100644 --- a/packages/builder/src/components/userInterface/GenericBindingPopover.svelte +++ b/packages/builder/src/components/userInterface/GenericBindingPopover.svelte @@ -26,9 +26,10 @@ const position = getCaretPosition() const toAdd = `{{ ${binding.path} }}` if (position.start) { - value = value.substring(0, position.start) - + toAdd - + value.substring(position.end, value.length); + value = + value.substring(0, position.start) + + toAdd + + value.substring(position.end, value.length) } else { value += toAdd }