mirror of
https://github.com/AdguardTeam/AdGuardHome.git
synced 2024-12-18 04:51:45 +03:00
Pull request #2258: ADG-8813 query log client column style fix
Merge in DNS/adguard-home from ADG-8813 to master Squashed commit of the following: commit ce36a973aed56960aa20720ab576ced9cc3a51b8 Merge:de0ea6edd
5c2ecfaa4
Author: Igor Lobanov <bniwredyc@gmail.com> Date: Mon Jul 22 11:05:59 2024 +0200 Merge remote-tracking branch 'origin/master' into ADG-8813 commitde0ea6eddf
Author: Igor Lobanov <bniwredyc@gmail.com> Date: Thu Jul 18 16:27:00 2024 +0200 changelog fix commit598e3ce174
Author: Igor Lobanov <bniwredyc@gmail.com> Date: Thu Jul 18 16:24:16 2024 +0200 fixed changelog commitc4378e31a5
Author: Igor Lobanov <bniwredyc@gmail.com> Date: Thu Jul 18 16:18:35 2024 +0200 changelog commitf9608325e8
Author: Igor Lobanov <bniwredyc@gmail.com> Date: Wed Jul 17 16:12:11 2024 +0200 query log client column style fix
This commit is contained in:
parent
5c2ecfaa41
commit
bf1101b460
2 changed files with 7 additions and 1 deletions
|
@ -27,6 +27,12 @@ See also the [v0.107.53 GitHub milestone][ms-v0.107.53].
|
||||||
NOTE: Add new changes BELOW THIS COMMENT.
|
NOTE: Add new changes BELOW THIS COMMENT.
|
||||||
-->
|
-->
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
|
||||||
|
- Text overflow on the query log page ([#7119]).
|
||||||
|
|
||||||
|
[#7119]: https://github.com/AdguardTeam/AdGuardHome/issues/7119
|
||||||
|
|
||||||
<!--
|
<!--
|
||||||
NOTE: Add new changes ABOVE THIS COMMENT.
|
NOTE: Add new changes ABOVE THIS COMMENT.
|
||||||
-->
|
-->
|
||||||
|
|
|
@ -66,7 +66,7 @@ export const renderFormattedClientCell = (value: any, info: any, isDetailed = fa
|
||||||
}
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="logs__text mw-100" title={value}>
|
<div className="logs__text logs__text--client mw-100" title={value}>
|
||||||
<Link to={`logs?search="${encodeURIComponent(value)}"`}>{nameContainer}</Link>
|
<Link to={`logs?search="${encodeURIComponent(value)}"`}>{nameContainer}</Link>
|
||||||
{whoisContainer}
|
{whoisContainer}
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in a new issue