Updates #4913
Squashed commit of the following:
commit baa63c647bdecf10a2c5e91568231864c423c4c3
Merge: 70de6540 9ffe0787
Author: Ildar Kamalov <ik@adguard.com>
Date: Mon Sep 19 18:53:24 2022 +0300
Merge branch 'master' into 4913-anonymizer-notification
commit 70de65405fa34ba764408ce1331f90ec0ef7aec2
Author: Ildar Kamalov <ik@adguard.com>
Date: Mon Sep 19 18:03:52 2022 +0300
client: fix text
commit e6d8db0086903fe61b0aa511807e97dd12bd571c
Author: Ildar Kamalov <ik@adguard.com>
Date: Fri Sep 16 20:37:42 2022 +0300
client: IP anonymizer notification
17 lines
469 B
JavaScript
17 lines
469 B
JavaScript
import React from 'react';
|
|
import { Trans } from 'react-i18next';
|
|
import { HashLink as Link } from 'react-router-hash-link';
|
|
|
|
const AnonymizerNotification = () => (
|
|
<div className="alert alert-primary mt-6">
|
|
<Trans components={[
|
|
<strong key="0">text</strong>,
|
|
<Link to="/settings#logs-config" key="1">link</Link>,
|
|
]}>
|
|
anonymizer_notification
|
|
</Trans>
|
|
</div>
|
|
);
|
|
|
|
export default AnonymizerNotification;
|