mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-13 11:38:36 -05:00
Update Schema Compare dialog to use folder icon (#16208)
* Update Schema Compare dialog to use folder icon * Address comment
This commit is contained in:
@@ -287,17 +287,17 @@ export class SchemaCompareDialog {
|
||||
let currentTextbox = isTarget ? this.targetTextBox : this.sourceTextBox;
|
||||
if (isTarget) {
|
||||
this.targetFileButton = this.view.modelBuilder.button().withProps({
|
||||
label: '•••',
|
||||
title: loc.selectTargetFile,
|
||||
ariaLabel: loc.selectTargetFile,
|
||||
secondary: true
|
||||
secondary: true,
|
||||
iconPath: path.join(this.extensionContext.extensionPath, 'media', 'folder.svg')
|
||||
}).component();
|
||||
} else {
|
||||
this.sourceFileButton = this.view.modelBuilder.button().withProps({
|
||||
label: '•••',
|
||||
title: loc.selectSourceFile,
|
||||
ariaLabel: loc.selectSourceFile,
|
||||
secondary: true
|
||||
secondary: true,
|
||||
iconPath: path.join(this.extensionContext.extensionPath, 'media', 'folder.svg')
|
||||
}).component();
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user