From c4f2b50da9a60eb670912f4a6dbf26b85eb1fc0f Mon Sep 17 00:00:00 2001 From: SatVeer Singh Date: Tue, 11 Apr 2023 22:07:08 +0530 Subject: [PATCH] Cloudwatch: Fix ui bug in template variable editor (#66207) --- .../components/VariableQueryEditor/VariableTextField.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/public/app/plugins/datasource/cloudwatch/components/VariableQueryEditor/VariableTextField.tsx b/public/app/plugins/datasource/cloudwatch/components/VariableQueryEditor/VariableTextField.tsx index 16ec391826f..7e23666f82d 100644 --- a/public/app/plugins/datasource/cloudwatch/components/VariableQueryEditor/VariableTextField.tsx +++ b/public/app/plugins/datasource/cloudwatch/components/VariableQueryEditor/VariableTextField.tsx @@ -23,6 +23,7 @@ export const VariableTextField = ({ interactive, label, onBlur, placeholder, val value={localValue} onChange={(e) => setLocalValue(e.currentTarget.value)} onBlur={() => onBlur(localValue)} + width={25} /> );