[Log] IF-LGSP-LOG-100, 추가 시나리오 반영 (RandomUnit.jsx, RollingUnit.jsx)

This commit is contained in:
younghoon100.park
2024-07-22 16:07:31 +09:00
parent 19aa51242d
commit a9d9bd73fa
3 changed files with 225 additions and 147 deletions

View File

@@ -1113,9 +1113,9 @@ export const sendLogTopContents = (params) => (dispatch, getState) => {
const { entryMenu, nowMenu } = getState().common.menu;
const newParams = {
...params,
entryMenu: entryMenu,
entryMenu: params?.entryMenu ?? entryMenu,
outDt: formatGMTString(new Date()),
nowMenu: nowMenu,
nowMenu: params?.nowMenu ?? nowMenu,
};
dispatch(postLog(newParams));