From 1fd0a0fa46adfcee98f6c70e5d1d31f1d085da40 Mon Sep 17 00:00:00 2001 From: endigo9740 Date: Tue, 4 Oct 2022 16:54:02 -0500 Subject: [PATCH] Tooltip position value set to optional --- src/lib/utilities/Tooltip/tooltip.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/utilities/Tooltip/tooltip.ts b/src/lib/utilities/Tooltip/tooltip.ts index 1f69fafde..21e74b317 100644 --- a/src/lib/utilities/Tooltip/tooltip.ts +++ b/src/lib/utilities/Tooltip/tooltip.ts @@ -2,7 +2,7 @@ export interface ArgsTooltip { content: string; - position: string; + position?: string; // Style Overrides background?: string; color?: string;