diff --git a/WORKLOG.md b/WORKLOG.md index 59de087c..1967a507 100644 --- a/WORKLOG.md +++ b/WORKLOG.md @@ -11,6 +11,7 @@ * acp init * DO postgres * make our own toasts / msg pane +* send account_instances on players update * only clear effects on post_resolve electrify doesn't work if you ko the construct diff --git a/client/assets/styles/controls.less b/client/assets/styles/controls.less index 0bc5c759..09713fc6 100644 --- a/client/assets/styles/controls.less +++ b/client/assets/styles/controls.less @@ -13,6 +13,11 @@ aside { padding: 1em 1em 1em 0; + // fix chrome being inconsistent + table { + height: 100%; + } + div { text-align: right; } diff --git a/client/src/components/account.status.jsx b/client/src/components/account.status.jsx index 6b5826c4..fce012cf 100644 --- a/client/src/components/account.status.jsx +++ b/client/src/components/account.status.jsx @@ -24,6 +24,16 @@ const addState = connect( }, function receiveDispatch(dispatch) { function accountPage() { + dispatch(actions.setGame(null)); + dispatch(actions.setInstance(null)); + dispatch(actions.setCombiner([])); + dispatch(actions.setReclaiming(false)); + dispatch(actions.setActiveSkill(null)); + dispatch(actions.setActiveConstruct(null)); + dispatch(actions.setInfo(null)); + dispatch(actions.setItemEquip(null)); + dispatch(actions.setItemUnequip([])); + dispatch(actions.setVboxHighlight([])); return dispatch(actions.setNav('account')); }