Skip to content
This repository has been archived by the owner on Jan 23, 2023. It is now read-only.

Commit

Permalink
fix: remove hard coding of port and debug code
Browse files Browse the repository at this point in the history
  • Loading branch information
rashley-iqt committed Feb 21, 2019
1 parent 867d37f commit c8ef2bf
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion src/epics/index-dataset-epic.js
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,6 @@ const generateIndex = (payload) => {
const dataset = payload.dataset;
const configuration = !isNil(payload.configuration) && !isEmpty(payload.configuration)
? payload.configuration : configurationFor(dataset);
console.log("configuration to flatten with: %o", configuration);
var flat = flattenDataset(dataset, configuration);
const idx = lunr(function () {
this.ref('id');
Expand Down
2 changes: 1 addition & 1 deletion src/features/dataset-controls/DatasetControls.js
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ if (host.indexOf(':') > -1) {

var POSEIDON_DATASET = {
name: "Poseidon Network",
url: "http://"+hostname+":5000/v1/network"
url: "http://"+hostname+":"+port+"/v1/network"
};

Modal.setAppElement('#root');
Expand Down

0 comments on commit c8ef2bf

Please sign in to comment.