Repository: atlas
Updated Branches:
  refs/heads/branch-0.8 561d43974 -> e0697265f


ATLAS-2820: Replication Audit Web UI: Column name updates. Part 2.


Project: http://git-wip-us.apache.org/repos/asf/atlas/repo
Commit: http://git-wip-us.apache.org/repos/asf/atlas/commit/e0697265
Tree: http://git-wip-us.apache.org/repos/asf/atlas/tree/e0697265
Diff: http://git-wip-us.apache.org/repos/asf/atlas/diff/e0697265

Branch: refs/heads/branch-0.8
Commit: e0697265f2288caa97d32a1c92a99d038fe7142c
Parents: 561d439
Author: Ashutosh Mestry <[email protected]>
Authored: Sat Sep 22 23:27:34 2018 -0700
Committer: Ashutosh Mestry <[email protected]>
Committed: Sat Sep 22 23:27:34 2018 -0700

----------------------------------------------------------------------
 dashboardv2/public/js/utils/UrlLinks.js                        | 6 +++---
 .../public/js/views/audit/ReplicationAuditTableLayoutView.js   | 2 +-
 2 files changed, 4 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/atlas/blob/e0697265/dashboardv2/public/js/utils/UrlLinks.js
----------------------------------------------------------------------
diff --git a/dashboardv2/public/js/utils/UrlLinks.js 
b/dashboardv2/public/js/utils/UrlLinks.js
index dd1537b..44fd3b0 100644
--- a/dashboardv2/public/js/utils/UrlLinks.js
+++ b/dashboardv2/public/js/utils/UrlLinks.js
@@ -91,13 +91,13 @@ define(['require', 'utils/Enums', 'utils/Utils', 
'underscore'], function(require
             var url = this.baseUrl + '/admin/expimp/audit',
                 queryParam = [];
             if (options) {
-                var clusterName = options.clusterName,
+                var serverName = options.serverName,
                     limit = options.limit,
                     offset = options.offset;
             }
 
-            if (clusterName) {
-                queryParam.push("clusterName=" + clusterName);
+            if (serverName) {
+                queryParam.push("serverName=" + serverName);
             }
             if (limit) {
                 queryParam.push("limit=" + limit);

http://git-wip-us.apache.org/repos/asf/atlas/blob/e0697265/dashboardv2/public/js/views/audit/ReplicationAuditTableLayoutView.js
----------------------------------------------------------------------
diff --git 
a/dashboardv2/public/js/views/audit/ReplicationAuditTableLayoutView.js 
b/dashboardv2/public/js/views/audit/ReplicationAuditTableLayoutView.js
index 9f4259b..bddea1d 100644
--- a/dashboardv2/public/js/views/audit/ReplicationAuditTableLayoutView.js
+++ b/dashboardv2/public/js/views/audit/ReplicationAuditTableLayoutView.js
@@ -116,7 +116,7 @@ define(['require',
                     that.RReplicationAuditTableLayoutView.show(new 
TableLayout(_.extend({}, that.commonTableOptions, {
                         columns: columns
                     })));
-                    _.extend(that.searchCollection.queryParams, { limit: 
that.limit, offset: that.offset, "clusterName": that.name });
+                    _.extend(that.searchCollection.queryParams, { limit: 
that.limit, offset: that.offset, "serverName": that.name });
                     that.fetchCollection(_.extend({ 'fromUrl': true }));
                 });
             },

Reply via email to