Skip to content

Commit

Permalink
Merge pull request primefaces#170 from atretyak1985/issue_#155
Browse files Browse the repository at this point in the history
Filters required in Device Detail Software tab primefaces#155
  • Loading branch information
gunnsth authored Mar 26, 2019
2 parents 6f33f8f + d2a6d55 commit f53b5e9
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions src/organization/device/device_detail.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -62,9 +62,14 @@
<side-filter #filterPanel *ngIf="isTabSelected(SOFTWARE_TAB_INDEX)" (onFilterChange)="updateProfileFilters($event)">
<context-filter-section #section (clearSectionEvent)="clearContextFilter($event)">
<text-filter (filterChanged)="filterChanged($event)" [model]="serviceDeviceSoftware.userFiltersState" key="name"
label="Search" placeholder="Names"></text-filter>
label="Search" placeholder="Names">
</text-filter>
<div class="input-container flex-container-column">
<label class="input-container-heading">Only Show:</label>
<input type="checkbox" class="checkbox" id="vulnerableonly" (click)="filterChanged($event)" [(ngModel)]="serviceDeviceSoftware.userFiltersState['vulnerableonly']"/>
<label for="vulnerableonly" class="label-filter-pane">Devices Vulnerabilities</label>
</div>
</context-filter-section>
<label-filter-section #section></label-filter-section>
</side-filter>

<side-filter #filterPanel *ngIf="isTabSelected(INCIDENT_TAB_INDEX)" (onFilterChange)="updateProfileFilters($event)">
Expand Down

0 comments on commit f53b5e9

Please sign in to comment.