From 5a7418e6565e76b2b05933c26956c58bfb7acd68 Mon Sep 17 00:00:00 2001 From: "Scott E. Graves" Date: Mon, 7 Oct 2019 16:25:39 -0500 Subject: [PATCH] Updated CHANGELOG.md --- CHANGELOG.md | 2 +- src/redux/reducers/mount_reducer.js | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0d2efb7..4061195 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,7 @@ ## 1.0.9 * \#40: Support for remote Windows mounts -* ScPrime re-brand +* ScPrime re-brandcalhost:2000 * Fix VC runtime detection (detect additional GUID's) ## 1.0.8 diff --git a/src/redux/reducers/mount_reducer.js b/src/redux/reducers/mount_reducer.js index 1b6e11e..3cf1b2b 100644 --- a/src/redux/reducers/mount_reducer.js +++ b/src/redux/reducers/mount_reducer.js @@ -16,7 +16,7 @@ import { export const createMountReducer = state => { let providerList = [ ...Constants.PROVIDER_LIST, - ...(state.RemoteMounts||['Remotelocalhost:20000']), + ...(state.RemoteMounts||[]), ]; const providerState = providerList.map(provider=> { return { @@ -55,7 +55,7 @@ export const createMountReducer = state => { MountsBusy: false, MountState: mountState, ProviderState: providerState, - RemoteMounts: state.RemoteMounts ? state.RemoteMounts : ['Remotelocalhost:20000'], + RemoteMounts: state.RemoteMounts ? state.RemoteMounts : [], }, { [addRemoteMount2]: (state, action) => { let mountState = {...state.MountState};