Skip to content

Commit

Permalink
Addressed PR comment
Browse files Browse the repository at this point in the history
Signed-off-by: Guian Gumpac <[email protected]>
  • Loading branch information
GumpacG committed Jul 28, 2023
1 parent 3ded28a commit 12d4c8e
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions bi-connectors/TableauConnector/src/connectionProperties.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
(function propertiesbuilder(attr) {
var props = {};
props["user"] = attr[connectionHelper.attributeUsername];
props["password"] = attr[connectionHelper.attributePassword];

return props;
return {
user: attr[connectionHelper.attributeUsername],
password: attr[connectionHelper.attributePassword]
};
})

0 comments on commit 12d4c8e

Please sign in to comment.