Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

18137 display decision buttons (approve, reject, etc) when a IN PROGRESS NR newly loaded #1425

Merged
merged 12 commits into from
Jan 26, 2024
3 changes: 2 additions & 1 deletion client/src/store/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -343,7 +343,8 @@ export const actions = {
dispatch( 'resetValues' ).then( () => {
commit( 'nrNumber', search )
commit( 'loadCompanyInfo', response.data )
commit( 'is_making_decision', false )
// I'm not sure why the following code was added. Let's comment it out for now.
// commit( 'is_making_decision', false )
if (refresh) {
commit( 'showExaminationArea', true )
}
Expand Down