Skip to content

Commit 4e16389

Browse files
sarkapalkovicovaHejdaJakub
authored andcommitted
fix(admin): removed immediate filter
Removed occurrences of immediate filter which does not exist anymore.
1 parent 47d997b commit 4e16389

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

apps/admin-gui/src/app/shared/components/assign-groups-sponsored-members/assign-groups-sponsored-members-component.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,10 +44,10 @@ <h5 class="mt-4">{{'DIALOGS.GENERATE_SPONSORED_MEMBERS.CREATE_NEW_GROUP' | trans
4444
</div>
4545
<div *ngIf="groupAssignment === 'existing'">
4646
<h5 class="mt-4">{{'DIALOGS.GENERATE_SPONSORED_MEMBERS.SELECT_EXISTING_GROUPS' | translate}}</h5>
47-
<perun-web-apps-immediate-filter
47+
<perun-web-apps-debounce-filter
4848
(filter)="applyFilter($event)"
4949
[placeholder]="'SHARED_LIB.PERUN.COMPONENTS.RESOURCES_LIST.TABLE_SEARCH'">
50-
</perun-web-apps-immediate-filter>
50+
</perun-web-apps-debounce-filter>
5151
<perun-web-apps-groups-list
5252
[groups]="assignableGroups"
5353
[selection]="selection"

apps/admin-gui/src/app/shared/components/dialogs/add-role-dialog/add-role-dialog.component.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ <h1 mat-dialog-title>{{'DIALOGS.ADD_ROLE.TITLE' | translate}}</h1>
99
<div mat-dialog-content class="dialog-container">
1010
<perun-web-apps-role-search-select [roles]="rules" (roleSelected)="resetSelection($event)">
1111
</perun-web-apps-role-search-select>
12-
<perun-web-apps-immediate-filter
12+
<perun-web-apps-debounce-filter
1313
*ngIf="selectedRule?.primaryObject"
1414
(filter)="filterValue = $event"
1515
[placeholder]="'SHARED_LIB.PERUN.COMPONENTS.UNIVERSAL_OBJECTS_LIST.FILTER'"
16-
class="font-size-1rem"></perun-web-apps-immediate-filter>
16+
class="font-size-1rem"></perun-web-apps-debounce-filter>
1717
<perun-web-apps-vos-list
1818
[filterValue]="filterValue"
1919
*ngIf="selectedRule?.primaryObject === 'Vo'"

apps/admin-gui/src/app/shared/components/dialogs/copy-members-dialog/copy-members-dialog-component.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@ <h1 mat-dialog-title>{{'DIALOGS.COPY_MEMBERS.TITLE' | translate}}</h1>
2222
{{'DIALOGS.COPY_MEMBERS.ATTRIBUTES_WARN' | translate}}
2323
</perun-web-apps-alert>
2424
<h5 class="mt-4">{{'DIALOGS.COPY_MEMBERS.SELECT_GROUPS' | translate}}</h5>
25-
<perun-web-apps-immediate-filter
25+
<perun-web-apps-debounce-filter
2626
(filter)="applyFilter($event)"
2727
[placeholder]="'SHARED_LIB.PERUN.COMPONENTS.RESOURCES_LIST.TABLE_SEARCH'">
28-
</perun-web-apps-immediate-filter>
28+
</perun-web-apps-debounce-filter>
2929
<perun-web-apps-groups-list
3030
[groups]="assignableGroups"
3131
[selection]="selection"

apps/admin-gui/src/app/shared/components/dialogs/copy-sponsored-members-dialog/copy-sponsored-members-dialog.component.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ <h6>{{'DIALOGS.COPY_SPONSORED_MEMBERS.SPONSORED_MEMBERS' | translate}}</h6>
1919
<perun-web-apps-alert alert_type="info">
2020
{{'DIALOGS.COPY_SPONSORED_MEMBERS.SPONSORED_MEMBERS_INFO' | translate}}
2121
</perun-web-apps-alert>
22-
<perun-web-apps-immediate-filter
22+
<perun-web-apps-debounce-filter
2323
(filter)="filter = $event"
2424
[placeholder]="'VO_DETAIL.SETTINGS.SPONSORED_MEMBERS.FILTER'">
25-
</perun-web-apps-immediate-filter>
25+
</perun-web-apps-debounce-filter>
2626
<app-sponsored-members-list
2727
*perunWebAppsLoader="tableLoading; indicator: spinner"
2828
[disableRouting]="true"

0 commit comments

Comments
 (0)