From af5ecfc8afe1e772b18a8ba61e39c11c0588fe64 Mon Sep 17 00:00:00 2001 From: DenisZ Date: Thu, 16 Mar 2023 13:15:28 +0100 Subject: [PATCH] FIX: Fixed an issue with explicit value assignment due to babel traspiler compatiblity Signed-off-by: DenisZ --- src/selection.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/selection.ts b/src/selection.ts index c0ff608..b06701f 100644 --- a/src/selection.ts +++ b/src/selection.ts @@ -184,7 +184,7 @@ export abstract class Selection { /// Controls whether, when a selection of this type is active in the /// browser, the selected range should be visible to the user. /// Defaults to `true`. - visible!: boolean + visible: boolean = true; } Selection.prototype.visible = true