table component improvement (#13801)

* hyperlink column

* fixed width for image only button - old behavior
This commit is contained in:
Alan Ren
2020-12-14 20:28:43 -08:00
committed by GitHub
parent 1f630b9767
commit ae6494f3e4
25 changed files with 605 additions and 788 deletions

View File

@@ -46,14 +46,14 @@ export class AssessmentResultGrid implements vscode.Disposable {
dark: extensionContext.asAbsolutePath('resources/dark/database.svg'),
light: extensionContext.asAbsolutePath('resources/light/database.svg')
},
ariaLabel: localize('databaseIconLabel', "Database Icon")
title: localize('databaseIconLabel', "Database")
},
[azdata.sqlAssessment.SqlAssessmentTargetType.Server]: {
icon: {
dark: extensionContext.asAbsolutePath('resources/dark/server.svg'),
light: extensionContext.asAbsolutePath('resources/light/server.svg')
},
ariaLabel: localize('serverIconLabel', "Server Icon")
title: localize('serverIconLabel', "Server")
}
};