diff --git a/web/projects/ui/src/app/routes/portal/components/interfaces/addresses/item.component.ts b/web/projects/ui/src/app/routes/portal/components/interfaces/addresses/item.component.ts
index ccd363eaa..4231acd71 100644
--- a/web/projects/ui/src/app/routes/portal/components/interfaces/addresses/item.component.ts
+++ b/web/projects/ui/src/app/routes/portal/components/interfaces/addresses/item.component.ts
@@ -24,8 +24,8 @@ import { TuiBadge } from '@taiga-ui/kit'
{{ 'Address details' | i18n }}
-
{{ address.type }} |
-
+ | {{ address.type }} |
+
@if (address.access === 'public') {
{{ 'public' | i18n }}
@@ -38,20 +38,41 @@ import { TuiBadge } from '@taiga-ui/kit'
-
}
|
-
- {{ address.gatewayName || '-' }}
+ |
+
+ {{ address.gatewayName || '-' }}
+
+ |
+
+ {{ address.url }}
|
- {{ address.url }} |
|
}
`,
styles: `
+ :host {
+ white-space: nowrap;
+
+ td:last-child {
+ padding-inline-start: 0;
+ }
+ }
+
+ div {
+ white-space: normal;
+ word-break: break-all;
+ display: -webkit-box;
+ -webkit-box-orient: vertical;
+ -webkit-line-clamp: 1;
+ overflow: hidden;
+ }
+
:host-context(tui-root._mobile) {
td {
width: auto !important;