This commit is contained in:
2023-03-01 17:00:06 -05:00
parent 020e5e9528
commit 084ef3c07a
12 changed files with 30 additions and 35 deletions

View File

@@ -233,7 +233,7 @@ function fileOpsReducer(state = initialState, action) {
case SS_SEARCH_RESULTS_FETCHED_SPECIAL: {
const foo = [];
if (!isUndefined(action.data.hits)) {
map(action.data.hits.hits, ({ _source }) => {
map(action.data.hits, ({ _source }) => {
foo.push(_source);
});
}