remove breaking changes

pull/94300/head
Esteban Beltran 10 months ago
parent 5bcb5df0b4
commit eeee7e29a6
No known key found for this signature in database
  1. 3
      packages/grafana-data/src/types/panel.ts
  2. 1
      packages/grafana-ui/src/components/AutoSaveField/AutoSaveField.tsx

@ -102,6 +102,9 @@ export interface PanelProps<T = any> {
/** @internal */
renderCounter: number;
/** Panel title */
title: string;
/** Grafana EventBus */
eventBus: EventBus;

@ -18,7 +18,6 @@ export interface Props<T = string> extends Omit<FieldProps, 'children'> {
saveErrorMessage?: string;
/** Input that will save its value on change */
children: (onChange: (newValue: T) => void) => React.ReactElement;
mandatory: boolean;
}
export function AutoSaveField<T = string>(props: Props<T>) {
const {

Loading…
Cancel
Save