Skip to content

Commit

Permalink
Merge pull request #493 from openziti/492-simple-svc-identities
Browse files Browse the repository at this point in the history
Simple service form is limited to only 30 identities
  • Loading branch information
rgallettonf authored Sep 11, 2024
2 parents 4ad2d68 + e79f04a commit dcac65c
Showing 1 changed file with 8 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,14 @@ export class SimpleServiceComponent extends ProjectableForm {
sort: 'name',
order: 'asc'
};
this.zitiService.get('identities', paging, []).then((result) => {
const filterObj: FilterObj = {
filterName: 'name',
columnId: 'name',
value: filter || '%',
label: '',
type: 'TEXTINPUT',
};
this.zitiService.get('identities', paging, [filterObj]).then((result) => {
const namedAttributes = result.data.map((identity) => {
this.identitiesNameIdMap[identity.name] = identity.id;
return identity.name;
Expand Down

0 comments on commit dcac65c

Please sign in to comment.