mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
Chore: eslint react hook fix for public folder (#31174)
* Fixes under public/app/plugins * Fixes under public/app/plugins/datasource * Fixes under public/app/features * Fixes under public/app/features * Fixes under public/app/features * Fixes under public/app/components * Fix PanelNotSupported test * Fix one more warning * Fix warning in usePanelSave * Fix traceview empty response * Azure monitor fixes * More fixes * Fix tests for azure monitor * Fixes after merging master * Add comment for disabled rules * Fixes after merging master * Fixes after merging master * Adress review comments * Fix azure tests * Address review feedbacks
This commit is contained in:
@@ -28,7 +28,7 @@ export const FiltersSettingsEditor: FunctionComponent<Props> = ({ value }) => {
|
||||
if (!value.settings?.filters?.length) {
|
||||
dispatch(addFilter());
|
||||
}
|
||||
}, []);
|
||||
}, [dispatch, value.settings?.filters?.length]);
|
||||
|
||||
return (
|
||||
<>
|
||||
|
||||
@@ -36,7 +36,7 @@ export const BucketScriptSettingsEditor: FunctionComponent<Props> = ({ value, pr
|
||||
if (!value.pipelineVariables?.length) {
|
||||
dispatch(addPipelineVariable());
|
||||
}
|
||||
}, []);
|
||||
}, [dispatch, value.pipelineVariables?.length]);
|
||||
|
||||
return (
|
||||
<>
|
||||
|
||||
@@ -26,6 +26,8 @@ export const ConfigEditor = (props: Props) => {
|
||||
logLevelField: options.jsonData.logLevelField || '',
|
||||
},
|
||||
});
|
||||
// We can't enforce the eslint rule here because we only want to run this once.
|
||||
// eslint-disable-next-line react-hooks/exhaustive-deps
|
||||
}, []);
|
||||
|
||||
return (
|
||||
|
||||
Reference in New Issue
Block a user