Skip to content

Commit

Permalink
fix for global filters + autocomplete
Browse files Browse the repository at this point in the history
  • Loading branch information
matt-deboer committed Oct 30, 2017
1 parent 20b6349 commit 7a1d80e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/ui/src/state/reducers/resources.js
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ export default (state = initialState, action) => {
return doRemoveFilter(state, action.filter, action.index)

case types.PUT_GLOBAL_FILTERS:
return doSetGlobalFilters(state, action.namespaces, action.kinds)
return doSetGlobalFilters(state, action.namespaces, action.kinds, action.kubeKinds)

case types.PUT_NAMESPACES:
return {...state, namespaces: action.namespaces}
Expand Down

0 comments on commit 7a1d80e

Please sign in to comment.