You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@senssoft.apache.org by ar...@apache.org on 2016/12/16 17:11:15 UTC

[57/58] [abbrv] incubator-senssoft-tap git commit: Routing bug fixed

Routing bug fixed


Project: http://git-wip-us.apache.org/repos/asf/incubator-senssoft-tap/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-senssoft-tap/commit/54630209
Tree: http://git-wip-us.apache.org/repos/asf/incubator-senssoft-tap/tree/54630209
Diff: http://git-wip-us.apache.org/repos/asf/incubator-senssoft-tap/diff/54630209

Branch: refs/heads/master
Commit: 54630209a8ea2c386ded1a692752f264e8485704
Parents: caa718a
Author: Arthi Vezhavendan <ar...@gmail.com>
Authored: Fri Dec 16 11:46:13 2016 -0500
Committer: Arthi Vezhavendan <ar...@gmail.com>
Committed: Fri Dec 16 11:46:13 2016 -0500

----------------------------------------------------------------------
 public/store/api.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-senssoft-tap/blob/54630209/public/store/api.js
----------------------------------------------------------------------
diff --git a/public/store/api.js b/public/store/api.js
index 2ca8a89..97c8df9 100644
--- a/public/store/api.js
+++ b/public/store/api.js
@@ -21,7 +21,7 @@ const API_ROOT = '';
 export const CALL_API = Symbol('CALL_API');
 
 function callApi(apiOpts) {
-  const url = API_ROOT + apiOpts.endpoint;
+  const url = API_ROOT + apiOpts.endpoint + '/';
   const method = apiOpts.method || 'GET';
 
   const headers = {};