From 8cdc75249749723d0112f7c353d425ea655d5b7b Mon Sep 17 00:00:00 2001 From: Alexander Kubyshkin Date: Mon, 20 Sep 2021 13:11:24 +0300 Subject: [PATCH] Fix variable input field size (#38850) (#39156) --- public/app/features/variables/pickers/shared/VariableInput.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/app/features/variables/pickers/shared/VariableInput.tsx b/public/app/features/variables/pickers/shared/VariableInput.tsx index 4ba293aac49..ad9c57a5a94 100644 --- a/public/app/features/variables/pickers/shared/VariableInput.tsx +++ b/public/app/features/variables/pickers/shared/VariableInput.tsx @@ -28,7 +28,7 @@ export class VariableInput extends PureComponent { ref={(instance) => { if (instance) { instance.focus(); - instance.setAttribute('style', `width:${Math.max(instance.width, 80)}px`); + instance.setAttribute('style', `width:${Math.max(instance.width, 150)}px`); } }} type="text"