mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-17 02:51:36 -05:00
Add a note that opening new support request from ADS works only after uploading configuration to the cloud/portal (#14601)
* Added note to support request page * Fixed note
This commit is contained in:
@@ -79,6 +79,7 @@ export const resetAllToDefault = localize('arc.resetAllToDefault', "Reset all to
|
|||||||
export const resetToDefault = localize('arc.resetToDefault', "Reset to default");
|
export const resetToDefault = localize('arc.resetToDefault', "Reset to default");
|
||||||
export const troubleshoot = localize('arc.troubleshoot', "Troubleshoot");
|
export const troubleshoot = localize('arc.troubleshoot', "Troubleshoot");
|
||||||
export const clickTheNewSupportRequestButton = localize('arc.clickTheNewSupportRequestButton', "Click the new support request button to file a support request in the Azure Portal.");
|
export const clickTheNewSupportRequestButton = localize('arc.clickTheNewSupportRequestButton', "Click the new support request button to file a support request in the Azure Portal.");
|
||||||
|
export const supportRequestNote = localize('arc.supportRequestNote', "Note that the resource configuration must have been uploaded to Azure first in order to open a support request.");
|
||||||
export const running = localize('arc.running', "Running");
|
export const running = localize('arc.running', "Running");
|
||||||
export const ready = localize('arc.ready', "Ready");
|
export const ready = localize('arc.ready', "Ready");
|
||||||
export const notReady = localize('arc.notReady', "Not Ready");
|
export const notReady = localize('arc.notReady', "Not Ready");
|
||||||
|
|||||||
@@ -44,6 +44,11 @@ export class PostgresSupportRequestPage extends DashboardPage {
|
|||||||
CSSStyles: { ...cssStyles.text, 'margin-bottom': '20px' }
|
CSSStyles: { ...cssStyles.text, 'margin-bottom': '20px' }
|
||||||
}).component());
|
}).component());
|
||||||
|
|
||||||
|
content.addItem(this.modelView.modelBuilder.text().withProperties<azdata.TextComponentProperties>({
|
||||||
|
value: loc.supportRequestNote,
|
||||||
|
CSSStyles: { ...cssStyles.text, 'margin-bottom': '20px' }
|
||||||
|
}).component());
|
||||||
|
|
||||||
const supportRequestButton = this.modelView.modelBuilder.button().withProperties<azdata.ButtonProperties>({
|
const supportRequestButton = this.modelView.modelBuilder.button().withProperties<azdata.ButtonProperties>({
|
||||||
iconPath: IconPathHelper.support,
|
iconPath: IconPathHelper.support,
|
||||||
label: loc.newSupportRequest,
|
label: loc.newSupportRequest,
|
||||||
|
|||||||
Reference in New Issue
Block a user