From b9140731476c58441a2c2b78312f3b6974ead70b Mon Sep 17 00:00:00 2001 From: Karl Burtram Date: Thu, 12 Apr 2018 15:00:47 -0700 Subject: [PATCH] Add missing double-quotes to insights schema description (#1139) --- .../dashboard/widgets/insights/insightsWidgetSchemas.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/sql/parts/dashboard/widgets/insights/insightsWidgetSchemas.ts b/src/sql/parts/dashboard/widgets/insights/insightsWidgetSchemas.ts index 2d980914fb..0960955ad6 100644 --- a/src/sql/parts/dashboard/widgets/insights/insightsWidgetSchemas.ts +++ b/src/sql/parts/dashboard/widgets/insights/insightsWidgetSchemas.ts @@ -93,15 +93,15 @@ export const insightsSchema: IJSONSchema = { }, database: { type: 'string', - description: nls.localize('actionDatabaseDescription', 'Target database for the action; can use the format "${columnName} to use a data driven column name.') + description: nls.localize('actionDatabaseDescription', 'Target database for the action; can use the format "${columnName}" to use a data driven column name.') }, server: { type: 'string', - description: nls.localize('actionServerDescription', 'Target server for the action; can use the format "${columnName} to use a data driven column name.') + description: nls.localize('actionServerDescription', 'Target server for the action; can use the format "${columnName}" to use a data driven column name.') }, user: { type: 'string', - description: nls.localize('actionUserDescription', 'Target user for the action; can use the format "${columnName} to use a data driven column name.') + description: nls.localize('actionUserDescription', 'Target user for the action; can use the format "${columnName}" to use a data driven column name.') } } }