Fix the select box issue (#9508)

* Fix the select box issue

* map => forEach

* Fix tests and a product issue

* Maybe another potential fix

* Fix a few more issues

* Change backendValue to value

* localization

* Use Array.isArray
This commit is contained in:
Amir Omidi
2020-03-27 16:59:29 -07:00
committed by GitHub
parent 626fc7894b
commit a8fd578d42
5 changed files with 78 additions and 57 deletions

View File

@@ -687,11 +687,11 @@
"objectType": null,
"categoryValues": [
{
"displayName": null,
"displayName": "%mssql.disabled%",
"name": "Disabled"
},
{
"displayName": null,
"displayName": "%mssql.enabled%",
"name": "Enabled"
}
],

View File

@@ -36,6 +36,9 @@
"title.showLogFile": "Show Log File",
"mssql.disabled": "Disabled",
"mssql.enabled": "Enabled",
"mssql.configuration.title": "MSSQL configuration",
"mssql.query.displayBitAsNumber": "Should BIT columns be displayed as numbers (1 or 0)? If false, BIT columns will be displayed as 'true' or 'false'",
"mssql.query.maxXmlCharsToStore": "Number of XML characters to store after running a query",