Merge: - client: Fix delay of custom filter editor
Merge in DNS/adguard-home from fix/1657 to master Fix #1657 * commit '474306d46546097700d5c767c7283f33f63f53d7': - client: Fix delay of custom filter editor
This commit is contained in:
@@ -84,7 +84,9 @@ const ClientCell = ({
|
||||
},
|
||||
};
|
||||
|
||||
const onClick = () => dispatch(toggleBlocking(buttonType, domain));
|
||||
const onClick = async () => {
|
||||
await dispatch(toggleBlocking(buttonType, domain));
|
||||
};
|
||||
|
||||
const getOptions = (optionToActionMap) => {
|
||||
const options = Object.entries(optionToActionMap);
|
||||
|
||||
Reference in New Issue
Block a user