From e56102081289ddda99c970abeac80106607b3b5c Mon Sep 17 00:00:00 2001 From: Lyubov Voloshko Date: Thu, 16 Apr 2026 11:21:47 +0000 Subject: [PATCH 1/2] tables list: add tooltip for long table names --- .../db-tables-list.component.html | 37 +++++++++++-------- 1 file changed, 21 insertions(+), 16 deletions(-) diff --git a/frontend/src/app/components/dashboard/db-tables-list/db-tables-list.component.html b/frontend/src/app/components/dashboard/db-tables-list/db-tables-list.component.html index 82497fc66..c9270f948 100644 --- a/frontend/src/app/components/dashboard/db-tables-list/db-tables-list.component.html +++ b/frontend/src/app/components/dashboard/db-tables-list/db-tables-list.component.html @@ -39,22 +39,23 @@
- - - - {{tableItem.icon}} - - - {{tableItem.initials}} - - + matTooltipPosition="right"> + + + + {{tableItem.icon}} + + + {{tableItem.initials}} + + +
@@ -110,7 +111,9 @@ class="material-symbols-outlined folder-icon" [style.color]="folder.iconColor || null">folder -
+
{{folder.name}}
@@ -148,6 +151,8 @@ (cdkDropListDropped)="onTableReorder($event, folder)">
Date: Thu, 16 Apr 2026 11:24:50 +0000 Subject: [PATCH 2/2] branding page: add router module import --- frontend/src/app/components/branding/branding.component.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/frontend/src/app/components/branding/branding.component.ts b/frontend/src/app/components/branding/branding.component.ts index e8d2ef665..c5e0cd33e 100644 --- a/frontend/src/app/components/branding/branding.component.ts +++ b/frontend/src/app/components/branding/branding.component.ts @@ -19,6 +19,7 @@ import { DeleteDomainDialogComponent } from '../company/delete-domain-dialog/del import { ProfileSidebarComponent } from '../profile/profile-sidebar/profile-sidebar.component'; import { PlaceholderBrandingComponent } from '../skeletons/placeholder-branding/placeholder-branding.component'; import { AlertComponent } from '../ui-components/alert/alert.component'; +import { RouterModule } from '@angular/router'; @Component({ selector: 'app-branding', @@ -32,6 +33,7 @@ import { AlertComponent } from '../ui-components/alert/alert.component'; MatButtonModule, MatIconModule, MatTooltipModule, + RouterModule, Angulartics2OnModule, AlertComponent, ProfileSidebarComponent,