1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-26 22:46:53 -04:00

Revert "Convert some instances (filter, find, pick) to native from lodash"

This reverts commit d8a0aac9c3.
This commit is contained in:
ta264
2020-09-28 06:26:23 +01:00
parent 9075fdc1c1
commit 081fe64bff
21 changed files with 94 additions and 69 deletions
@@ -1,3 +1,4 @@
import _ from 'lodash';
import PropTypes from 'prop-types';
import React, { Component } from 'react';
import { connect } from 'react-redux';
@@ -19,7 +20,7 @@ function createMapStateToProps() {
items
} = metadata;
const settings = selectSettings(items.find({ id }), pendingChanges, saveError);
const settings = selectSettings(_.find(items, { id }), pendingChanges, saveError);
return {
advancedSettings,