Add optional title to tables (#6740)

* Add optional title to tables

* addressing comments
This commit is contained in:
Kim Santiago
2019-08-14 11:12:18 -07:00
committed by GitHub
parent 462b5d1d53
commit 8287e0dda5
5 changed files with 20 additions and 1 deletions

View File

@@ -32,7 +32,9 @@ export class DacFxSummaryPage extends BasePage {
}
async start(): Promise<boolean> {
this.table = this.view.modelBuilder.table().component();
this.table = this.view.modelBuilder.table().withProperties({
title: localize('dacfx.summaryTableTitle', 'Summary of settings')
}).component();
this.loader = this.view.modelBuilder.loadingComponent().withItem(this.table).component();
this.form = this.view.modelBuilder.formContainer().withFormItems(
[