mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-18 17:22:45 -05:00
fit and finish for open dashboard dialog (#954)
This commit is contained in:
committed by
Karl Burtram
parent
089577c5a8
commit
f76e8ae2c5
@@ -14,6 +14,10 @@
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.extension-view .header.collapsible.hide {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.extension-view .header .title {
|
||||
display: flex;
|
||||
justify-content: flex-start;
|
||||
|
||||
@@ -124,7 +124,7 @@ export class NewDashboardTabDialog extends Modal {
|
||||
@IContextKeyService contextKeyService: IContextKeyService
|
||||
) {
|
||||
super(
|
||||
localize('newDashboardTab.openInstalledFeatures', 'Open installed features'),
|
||||
localize('newDashboardTab.openDashboardExtensions', 'Open dashboard extensions'),
|
||||
TelemetryKeys.AddNewDashboardTab,
|
||||
partService,
|
||||
telemetryService,
|
||||
@@ -162,7 +162,7 @@ export class NewDashboardTabDialog extends Modal {
|
||||
this.createExtensionList(this._extensionViewContainer);
|
||||
this._noExtensionViewContainer = DOM.$('.no-extension-view');
|
||||
let noExtensionTitle = DOM.append(this._noExtensionViewContainer, DOM.$('.no-extensionTab-label'));
|
||||
let noExtensionLabel = localize('newdashboardTabDialog.noExtensionLabel', 'No available feature tabs. Install extensions from the Extension Manager to get additional features.');
|
||||
let noExtensionLabel = localize('newdashboardTabDialog.noExtensionLabel', 'No dashboard extensions are installed at this time. Go to Extension Manager to explore recommended extensions.');
|
||||
noExtensionTitle.innerHTML = noExtensionLabel;
|
||||
|
||||
DOM.append(container, this._noExtensionViewContainer);
|
||||
@@ -199,6 +199,7 @@ export class NewDashboardTabDialog extends Modal {
|
||||
});
|
||||
|
||||
this._extensionTabView.render(container, Orientation.VERTICAL);
|
||||
this._extensionTabView.hideHeader();
|
||||
|
||||
this._register(attachListStyler(this._extensionList, this._themeService));
|
||||
|
||||
|
||||
Reference in New Issue
Block a user