diff --git a/app/config/default-env.json b/app/config/default-env.json index f6136e57..815d121b 100644 --- a/app/config/default-env.json +++ b/app/config/default-env.json @@ -1,5 +1,5 @@ { - "version": "1.18.2", + "version": "1.19.0", "minimumCoreVersion": "5.2.0", "protocol": "${OPENHIM_CONSOLE_PROTOCOL}", "host": "${OPENHIM_CORE_MEDIATOR_HOSTNAME}", diff --git a/app/config/default.json b/app/config/default.json index 2768d385..5628d917 100644 --- a/app/config/default.json +++ b/app/config/default.json @@ -1,5 +1,5 @@ { - "version": "1.18.2", + "version": "1.19.0", "minimumCoreVersion": "5.0.0", "protocol": "https", "host": "localhost", diff --git a/app/scripts/controllers/channel-tabs/basicInfo.js b/app/scripts/controllers/channel-tabs/basicInfo.js index 671d75fe..68a2ef66 100644 --- a/app/scripts/controllers/channel-tabs/basicInfo.js +++ b/app/scripts/controllers/channel-tabs/basicInfo.js @@ -54,6 +54,7 @@ export function channelBasicInfoCtrl ($scope, $timeout, $interval, Api, Notify, $scope.channel.type = 'http' $scope.channel.authType = 'private' $scope.channel.status = 'enabled' + $scope.channel.isAsynchronousProcess = false } $scope.$on('$destroy', function () { diff --git a/app/views/partials/channels-tab-basic-info.html b/app/views/partials/channels-tab-basic-info.html index 04ff32ce..f648d246 100644 --- a/app/views/partials/channels-tab-basic-info.html +++ b/app/views/partials/channels-tab-basic-info.html @@ -77,6 +77,14 @@ +
+ +
+ + +
+
+
@@ -110,6 +112,7 @@

  Task #{{task._id}}

Don't filter + @@ -205,6 +208,7 @@

Pagination:

Successful Completed Processing + Pending Async Completed with error(s) Failed diff --git a/app/views/tasks.html b/app/views/tasks.html index 889e3248..3be6fd0d 100644 --- a/app/views/tasks.html +++ b/app/views/tasks.html @@ -73,6 +73,7 @@

  Rerun Tasks

Completed Processing + Pending Async Queued Paused Cancelled @@ -81,6 +82,7 @@

  Rerun Tasks

{{getProcessedPercentage(task)}} {{getProcessedPercentage(task)}} + {{getProcessedPercentage(task)}} {{getProcessedPercentage(task)}} {{getProcessedPercentage(task)}} diff --git a/app/views/transactionDetails.html b/app/views/transactionDetails.html index 2e759c94..9678fc1f 100644 --- a/app/views/transactionDetails.html +++ b/app/views/transactionDetails.html @@ -38,6 +38,7 @@

Successful Completed Processing + Pending Async Completed with error(s) Failed

diff --git a/app/views/transactions.html b/app/views/transactions.html index 2f579e49..766be12e 100644 --- a/app/views/transactions.html +++ b/app/views/transactions.html @@ -116,6 +116,7 @@

Successful Completed Processing + Pending Async Completed with error(s) Failed diff --git a/package-lock.json b/package-lock.json index 522bdb4c..18c4b385 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "openhim-console", - "version": "1.18.2", + "version": "1.19.0", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 0ebcafc1..8bc97427 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "openhim-console", "description": "This application provides a web application to configure and manage the OpenHIM-core component.", - "version": "1.18.3", + "version": "1.19.0", "dependencies": { "http-server": "^14.1.1", "keycloak-js": "^20.0.3",