diff --git a/ui/src/App.sass b/ui/src/App.sass index 0b409a236..7ef640155 100644 --- a/ui/src/App.sass +++ b/ui/src/App.sass @@ -22,4 +22,17 @@ margin-left: 10px font-size: 11px font-weight: bold - color: $light-blue-color \ No newline at end of file + color: $light-blue-color + + .httpsDomains + display: none + margin: 0 + padding: 0 + list-style: none + + .customWarningStyle + &:hover + overflow-y: scroll + height: 85px + .httpsDomains + display: block diff --git a/ui/src/App.tsx b/ui/src/App.tsx index fa5b8153c..3ea758f8d 100644 --- a/ui/src/App.tsx +++ b/ui/src/App.tsx @@ -92,7 +92,7 @@ const App = () => { - + return (
@@ -119,8 +119,9 @@ const App = () => {
- setUserDismissedTLSWarning(true)} severity="warning"> - Mizu is detecting TLS traffic{addressesWithTLS.size ? ` (directed to ${Array.from(addressesWithTLS).join(", ")})` : ''}, this type of traffic will not be displayed. + setUserDismissedTLSWarning(true)} severity="warning"> + Mizu is detecting TLS traffic, this type of traffic will not be displayed. + {addressesWithTLS.size > 0 &&
    {Array.from(addressesWithTLS, address =>
  • {address}
  • )}
}