From 86a1fe578a441d0bf845f10d74d661ece27b0eaf Mon Sep 17 00:00:00 2001 From: Neel <47709856+neel1996@users.noreply.github.com> Date: Tue, 11 Oct 2022 18:50:13 +0530 Subject: [PATCH] Grafana UI: Fix alignment issue with http method dropdown (#56592) - Removed custom width prop from the http method Select component to fix the alignment issue for prometheus HTTP request type dropdown --- .../plugins/datasource/prometheus/configuration/PromSettings.tsx | 1 - 1 file changed, 1 deletion(-) diff --git a/public/app/plugins/datasource/prometheus/configuration/PromSettings.tsx b/public/app/plugins/datasource/prometheus/configuration/PromSettings.tsx index 583af4c28cf..fcb6b7377a6 100644 --- a/public/app/plugins/datasource/prometheus/configuration/PromSettings.tsx +++ b/public/app/plugins/datasource/prometheus/configuration/PromSettings.tsx @@ -89,7 +89,6 @@ export const PromSettings = (props: Props) => { options={httpOptions} value={httpOptions.find((o) => o.value === options.jsonData.httpMethod)} onChange={onChangeHandler('httpMethod', options, onOptionsChange)} - width={7} />