Skip to content

Commit

Permalink
[NIFI-13482] add filtered extension count (#9480)
Browse files Browse the repository at this point in the history
* [NIFI-13482] add filtered extension count

* address review comments

This closes #9480
  • Loading branch information
scottyaslan authored Nov 5, 2024
1 parent c5a5140 commit 0bbf3cd
Showing 1 changed file with 20 additions and 17 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,23 +15,26 @@
~ limitations under the License.
-->
<div class="extension-creation-dialog" (keyup)="navigateSelectionList($event)">
<div class="flex justify-between items-center">
<h2 mat-dialog-title>Add {{ componentType }}</h2>
<div class="pt-5 pr-5">
<mat-form-field>
<mat-label>Filter types</mat-label>
<input
matInput
class="px-1.5 py-1 w-64"
type="text"
(keyup)="filterTypes($event)"
tabindex="0"
placeholder="Filter types..." />
</mat-form-field>
</div>
</div>
<h2 mat-dialog-title>Add {{ componentType }}</h2>
<mat-dialog-content>
<div class="flex flex-col dialog-content">
<div class="flex flex-col dialog-content gap-y-2">
<div class="flex flex-col gap-y-2">
<div class="flex items-center">
<mat-form-field subscriptSizing="dynamic" class="mt-1">
<mat-label>Filter types</mat-label>
<input
matInput
class="px-1.5 py-1 w-64"
type="text"
(keyup)="filterTypes($event)"
tabindex="0"
placeholder="Filter types..." />
</mat-form-field>
</div>
<div class="tertiary-color font-medium">
<div>Showing {{ dataSource.filteredData.length }} of {{ dataSource.data.length }}</div>
</div>
</div>
<div class="listing-table select-none flex-1 relative">
<div class="absolute inset-0 overflow-y-auto overflow-x-hidden">
<table
Expand Down Expand Up @@ -102,7 +105,7 @@ <h2 mat-dialog-title>Add {{ componentType }}</h2>
</table>
</div>
</div>
<div class="flex flex-col pt-3">
<div class="flex flex-col">
@if (selectedType) {
<div class="flex items-center mb-1">
<div
Expand Down

0 comments on commit 0bbf3cd

Please sign in to comment.