mirror of
https://github.com/AdguardTeam/AdGuardHome.git
synced 2025-05-02 22:12:53 +03:00
+ client: add response information to the filtered query log items
This commit is contained in:
parent
3b98461a2a
commit
428706399a
5 changed files with 315 additions and 249 deletions
client/src/helpers
|
@ -28,6 +28,7 @@ export const normalizeLogs = logs => logs.map((log) => {
|
|||
filterId,
|
||||
rule,
|
||||
service_name,
|
||||
status,
|
||||
} = log;
|
||||
const { host: domain, type } = question;
|
||||
const responsesArray = response ? response.map((response) => {
|
||||
|
@ -44,6 +45,7 @@ export const normalizeLogs = logs => logs.map((log) => {
|
|||
filterId,
|
||||
rule,
|
||||
serviceName: service_name,
|
||||
status,
|
||||
};
|
||||
});
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue