datapub icon indicating copy to clipboard operation
datapub copied to clipboard

Default config values are not being used

Open kmanaseryan opened this issue 4 years ago • 3 comments

If I don't provide any config values the default values are not being used.

Expected result

Use the following config values:

{
    authToken: "be270cae-1c77-4853-b8c1-30b6cf5e9878",
    api: "http://localhost:5000",
    lfs: "http://localhost:5001", // Feel free to modify this
    organizationId: "myorg",
    datasetId: "data-test-2",
}

Actual result

{
    api: null,
    authToken: null,
    datasetId: "test-id",
    lfs: null,
    organizationId: null,
}

kmanaseryan avatar Sep 17 '20 08:09 kmanaseryan