mirror of
https://github.com/grafana/grafana.git
synced 2025-09-22 12:42:52 +08:00
Performance: Standardize lodash imports to use destructured members (#33040)
* Performance: Standardize lodash imports to use destructured members Changes lodash imports of the form `import x from 'lodash/x'` to `import { x } from 'lodash'` to reduce bundle size. * Remove unnecessary _ import from Graph component * Enforce lodash import style * Fix remaining lodash imports
This commit is contained in:
@ -1,4 +1,4 @@
|
||||
import _ from 'lodash';
|
||||
import { find } from 'lodash';
|
||||
import {
|
||||
createChangeHandler,
|
||||
createResetHandler,
|
||||
@ -55,7 +55,7 @@ export class PostgresConfigCtrl {
|
||||
if (version < 1000) {
|
||||
name = String(major) + '.' + String(minor);
|
||||
}
|
||||
if (!_.find(this.postgresVersions, (p: any) => p.value === version)) {
|
||||
if (!find(this.postgresVersions, (p: any) => p.value === version)) {
|
||||
this.postgresVersions.push({ name: name, value: version });
|
||||
}
|
||||
this.current.jsonData.postgresVersion = version;
|
||||
|
Reference in New Issue
Block a user