Update dacpac wizard to use folder icon (#14290)

* change dacpac extension to use folder icon instead of ... on buttons

* make folder icon more centered

* fix tests
This commit is contained in:
Kim Santiago
2021-02-16 12:57:13 -08:00
committed by GitHub
parent 21fae18a13
commit c84e092473
5 changed files with 11 additions and 9 deletions

View File

@@ -182,10 +182,9 @@ export abstract class DacFxConfigPage extends BasePage {
this.fileTextBox.ariaLabel = loc.fileLocation;
this.fileButton = this.view.modelBuilder.button().withProps({
label: '•••',
title: loc.selectFile,
ariaLabel: loc.selectFile,
secondary: true
iconPath: path.join(this.instance.extensionContextExtensionPath, 'images', 'folder.svg'),
}).component();
}