From 5d336accbc2a6bf97e426444b3bbbfcb0bfb595c Mon Sep 17 00:00:00 2001 From: udeeshagautam <46980425+udeeshagautam@users.noreply.github.com> Date: Thu, 24 Jan 2019 13:17:37 -0800 Subject: [PATCH] adding hover text for dashboard serach grid items (#3816) Fix for issue : Search widget in Manage dashboard truncates long names with no hovertext to show full name (Ref issue: #3075) --- src/sql/parts/dashboard/widgets/explorer/explorerTree.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/sql/parts/dashboard/widgets/explorer/explorerTree.ts b/src/sql/parts/dashboard/widgets/explorer/explorerTree.ts index 7d999d6f77..bc3f3d4199 100644 --- a/src/sql/parts/dashboard/widgets/explorer/explorerTree.ts +++ b/src/sql/parts/dashboard/widgets/explorer/explorerTree.ts @@ -288,6 +288,7 @@ export class ExplorerRenderer implements tree.IRenderer { } else { templateData.label.innerText = element.databaseName; } + templateData.label.title = templateData.label.innerText; } public disposeTemplate(tree: tree.ITree, templateId: string, templateData: IListTemplate): void {