IO-766 Added Disk Scan for estimates.

This commit is contained in:
Patrick Fic
2021-03-17 16:56:12 -07:00
parent 674dc5c83f
commit c27f66fdb3
15 changed files with 286 additions and 30851 deletions

View File

@@ -11,6 +11,7 @@ const INITIAL_STATE = {
error: null,
},
jobReadOnly: false,
partnerVersion: null,
};
const applicationReducer = (state = INITIAL_STATE, action) => {
@@ -67,6 +68,9 @@ const applicationReducer = (state = INITIAL_STATE, action) => {
case ApplicationActionTypes.SET_JOB_READONLY:
return { ...state, jobReadOnly: action.payload };
case ApplicationActionTypes.SET_PARTNER_VERSION:
return { ...state, partnerVersion: action.payload };
default:
return state;
}