Skip to content

Commit

Permalink
- client: fix/1754 - Merge pull request #639 in DNS/adguard-home from…
Browse files Browse the repository at this point in the history
… fix/1754 to master

Close #1754

* commit 'dddcbe77e29ff815e32913de4e5d99be98ab9934':
  -client: Fix "DNS rewrites" adding an item error
  • Loading branch information
ArtemBaskal committed May 29, 2020
2 parents b803280 + dddcbe7 commit 620f5c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/src/reducers/rewrites.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ const rewrites = handleActions(
[actions.addRewriteSuccess]: (state, { payload }) => {
const newState = {
...state,
list: [...state.list, ...payload],
list: [...state.list, payload],
processingAdd: false,
};
return newState;
Expand Down

0 comments on commit 620f5c2

Please sign in to comment.