diff --git a/js/components/conceptpicker/ConceptPicker.js b/js/components/conceptpicker/ConceptPicker.js index 1cda17e42..870bd6a28 100644 --- a/js/components/conceptpicker/ConceptPicker.js +++ b/js/components/conceptpicker/ConceptPicker.js @@ -65,10 +65,11 @@ define(['jquery','knockout', 'text!./ConceptPickerTemplate.html', './InputTypes/ ConceptPickerViewModel.prototype.search = function () { var self = this; - return VocabularyProvider.search(this.searchText, { - domains: [this.SelectedDomain], - maxResults: this.MaxResults - }) + searchParams = { + QUERY: this.searchText, + DOMAIN_ID: [this.SelectedDomain] + } + return VocabularyProvider.search(searchParams) .then(function (searchResults) { self.results(searchResults); }); diff --git a/js/const.js b/js/const.js index f2dd59f54..7e4348e90 100644 --- a/js/const.js +++ b/js/const.js @@ -269,6 +269,14 @@ define([ title: "Spark", dialect: "spark", }, + SNOWFLAKE: { + title: "Snowflake", + dialect: "snowflake", + }, + SYNAPSE: { + title: "Azure Synapse", + dialect: "synapse", + }, }; const eventTypes = { diff --git a/js/pages/configuration/sources/source-manager.js b/js/pages/configuration/sources/source-manager.js index 31bebde77..1ecee3fc9 100644 --- a/js/pages/configuration/sources/source-manager.js +++ b/js/pages/configuration/sources/source-manager.js @@ -158,6 +158,8 @@ define([ { id: 'netezza', name: ko.i18n('configuration.viewEdit.dialect.options.netezza', 'IBM Netezza') }, { id: 'hive', name: ko.i18n('configuration.viewEdit.dialect.options.hive', 'Hive LLAP')}, { id: 'spark', name: ko.i18n('configuration.viewEdit.dialect.options.spark', 'Spark')}, + { id: 'snowflake', name: ko.i18n('configuration.viewEdit.dialect.options.snowflake', 'Snowflake')}, + { id: 'synapse', name: ko.i18n('configuration.viewEdit.dialect.options.synapse', 'Azure Synapse') }, ]; this.sourceCaption = ko.computed(() => { diff --git a/js/pages/data-sources/components/reports/treemapDrilldown.js b/js/pages/data-sources/components/reports/treemapDrilldown.js index cdd8110aa..9c6234435 100644 --- a/js/pages/data-sources/components/reports/treemapDrilldown.js +++ b/js/pages/data-sources/components/reports/treemapDrilldown.js @@ -352,4 +352,4 @@ define([ } return commonUtils.build('report-treemap-drilldown', TreemapDrilldown, view); -}); \ No newline at end of file +}); diff --git a/package.json b/package.json index b0e268282..6b8e11fb3 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "atlas", - "version": "2.12.0-DEV", + "version": "2.12.0", "description": "is an open source software tool for researchers to conduct scientific analyses on standardized observational data converted to the OMOP Common Data Model V5", "main": "js/main.js", "scripts": {