Skip to content

Commit

Permalink
fix: resolve wildcard into pmsi _text when no research (#895)
Browse files Browse the repository at this point in the history
* fix: adapt documentReference params type to type-name

* refactor: change type sort by type-name in dataTableComposition

* refactor: change type sort by type-name in dataTableComposition

* fix: resolve repartitionMap for graph

* fix: resolve unbuild pmsi criteria always return all hierarchy

* fix: resolve create request without any criteria

* fix: resolve wildcard into pmsi _text when no research
  • Loading branch information
Mehdi-BOUYAHIA authored Nov 8, 2023
1 parent 70588fa commit 1fd0549
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/state/patient.ts
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ const fetchPmsi = createAsyncThunk<FetchPmsiReturn, FetchPmsiParams, { state: Ro
const sortBy = options?.sort?.by ?? ''
const sortDirection = options?.sort?.direction ?? ''
const page = options?.page ?? 1
const searchInput = options?.filters?.searchInput + WILDCARD ?? ''
const searchInput = options?.filters?.searchInput === '' ? '' : options?.filters?.searchInput + WILDCARD
const code = options?.filters?.code ?? ''
const diagnosticTypes = options?.filters?.diagnosticTypes ?? []
const nda = options?.filters?.nda ?? ''
Expand Down

0 comments on commit 1fd0549

Please sign in to comment.