mirror of
https://github.com/AdguardTeam/AdGuardHome.git
synced 2024-12-15 19:31:45 +03:00
Added green background for whitelist rows
This commit is contained in:
parent
800002f83d
commit
49ff0d2b9a
@ -223,8 +223,19 @@ class Logs extends Component {
|
|||||||
if (!rowInfo) {
|
if (!rowInfo) {
|
||||||
return {};
|
return {};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (rowInfo.original.reason.indexOf('Filtered') === 0) {
|
||||||
return {
|
return {
|
||||||
className: (rowInfo.original.reason.indexOf('Filtered') === 0 ? 'red' : ''),
|
className: 'red',
|
||||||
|
};
|
||||||
|
} else if (rowInfo.original.reason === 'NotFilteredWhiteList') {
|
||||||
|
return {
|
||||||
|
className: 'green',
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
return {
|
||||||
|
className: '',
|
||||||
};
|
};
|
||||||
}}
|
}}
|
||||||
/>);
|
/>);
|
||||||
|
@ -11,3 +11,7 @@
|
|||||||
.rt-tr-group .red {
|
.rt-tr-group .red {
|
||||||
background-color: #fff4f2;
|
background-color: #fff4f2;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.rt-tr-group .green {
|
||||||
|
background-color: #f1faf3;
|
||||||
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user