File tree Expand file tree Collapse file tree 1 file changed +8
-9
lines changed
packages/esm-patient-queues-app/src/active-visits Expand file tree Collapse file tree 1 file changed +8
-9
lines changed Original file line number Diff line number Diff line change @@ -193,15 +193,14 @@ const ActiveVisitsTable: React.FC<ActiveVisitsTableProps> = ({ status }) => {
193193 actions : {
194194 content : (
195195 < div style = { { display : 'flex' } } >
196- { entry . status === 'COMPLETED' ||
197- ( entry . status === 'PENDING' && (
198- < >
199- < PickPatientActionMenu queueEntry = { entry } closeModal = { ( ) => true } />
200- { session ?. user && userHasAccess ( PRIVILEGE_ENABLE_EDIT_DEMOGRAPHICS , session . user ) && (
201- < EditActionsMenu to = { `\${openmrsSpaBase}/patient/${ entry ?. patientUuid } /edit` } from = { fromPage } />
202- ) }
203- </ >
204- ) ) }
196+ { entry . status === 'PENDING' && (
197+ < >
198+ < PickPatientActionMenu queueEntry = { entry } closeModal = { ( ) => true } />
199+ { session ?. user && userHasAccess ( PRIVILEGE_ENABLE_EDIT_DEMOGRAPHICS , session . user ) && (
200+ < EditActionsMenu to = { `\${openmrsSpaBase}/patient/${ entry ?. patientUuid } /edit` } from = { fromPage } />
201+ ) }
202+ </ >
203+ ) }
205204 < ViewActionsMenu to = { `\${openmrsSpaBase}/patient/${ entry ?. patientUuid } /chart` } from = { fromPage } />
206205 < NotesActionsMenu note = { entry } />
207206 </ div >
You can’t perform that action at this time.
0 commit comments