From 74910cf4cd1b4c93c9824175eef410915097d466 Mon Sep 17 00:00:00 2001 From: "grafana-delivery-bot[bot]" <132647405+grafana-delivery-bot[bot]@users.noreply.github.com> Date: Mon, 2 Sep 2024 15:34:17 +0200 Subject: [PATCH] [v11.2.x] Grafana SQL: Fix broken import in NumberInput component (#92808) Grafana SQL: Fix broken import in NumberInput component (#92803) SQL: Fix broken import (cherry picked from commit 5871362ccfa9e38eda9e24bec51ee47724e90b14) Co-authored-by: Eugene Apollonsky --- .../grafana-sql/src/components/configuration/NumberInput.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/grafana-sql/src/components/configuration/NumberInput.tsx b/packages/grafana-sql/src/components/configuration/NumberInput.tsx index e71ce679311..492f889852e 100644 --- a/packages/grafana-sql/src/components/configuration/NumberInput.tsx +++ b/packages/grafana-sql/src/components/configuration/NumberInput.tsx @@ -1,6 +1,6 @@ import { useState } from 'react'; -import { Input } from '@grafana/ui/src/components/Input/Input'; +import { Input } from '@grafana/ui'; type NumberInputProps = { value: number;