From 2518012569bf6d3a46fd69df6cb89c420b16b202 Mon Sep 17 00:00:00 2001 From: Alex Khomenko Date: Mon, 10 Feb 2025 13:46:46 +0200 Subject: [PATCH] grafana-ui: Update InlineField error prop type to React.ReactNode (#100347) --- packages/grafana-ui/src/components/Forms/InlineField.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/grafana-ui/src/components/Forms/InlineField.tsx b/packages/grafana-ui/src/components/Forms/InlineField.tsx index 2eb4b5c1f25..ec63fc93c3f 100644 --- a/packages/grafana-ui/src/components/Forms/InlineField.tsx +++ b/packages/grafana-ui/src/components/Forms/InlineField.tsx @@ -1,5 +1,5 @@ import { cx, css } from '@emotion/css'; -import { cloneElement } from 'react'; +import { cloneElement, ReactNode } from 'react'; import { GrafanaTheme2 } from '@grafana/data'; @@ -23,7 +23,7 @@ export interface Props extends Omit