Skip to content

Commit

Permalink
JNG-4759 fix mapped operation range (#70)
Browse files Browse the repository at this point in the history
  • Loading branch information
noherczeg authored Apr 17, 2023
1 parent a39b692 commit 84484cf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ return async function {{ actionFunctionName action page }} ({{# if action.operat
id: '{{ createId action.inputParameterPage }}',
columns,
defaultSortField: sortModel[0],
rangeCall: async (queryCustomizer) => await {{ classServiceName action.dataElement.owner }}Impl.getRangeFor{{ firstToUpper action.dataElement.name }}({{# if action.operation.isMapped }}owner{{ else }}undefined{{/ if }}, processQueryCustomizer(queryCustomizer)),
rangeCall: async (queryCustomizer) => await {{ classServiceName action.dataElement.owner }}Impl.getRangeFor{{ firstToUpper action.operation.name }}({{# if action.operation.isMapped }}owner{{ else }}undefined{{/ if }}, processQueryCustomizer(queryCustomizer)),
single: true,
alreadySelectedItems: '', // TODO: ???
filterOptions,
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@

<judo-meta-ui-version>1.1.0.20230416_041747_f8e66293_develop</judo-meta-ui-version>
<judo-generator-commons-version>1.0.0.20230415_220023_013a5a8d_develop</judo-generator-commons-version>
<judo-ui-typescript-rest-version>1.0.0.20230330_121508_447c241d_bugfix_JNG_4694_fix_range_call_api</judo-ui-typescript-rest-version>
<judo-ui-typescript-rest-version>1.0.0.20230417_163750_74636108_bugfix_JNG_4759_fix_mapped_operation_range</judo-ui-typescript-rest-version>

<surefire-version>3.0.0-M7</surefire-version>
<!--suppress UnresolvedMavenProperty -->
Expand Down

0 comments on commit 84484cf

Please sign in to comment.