Adding filters on topology summary

This commit is contained in:
Piotr Pekala 2019-09-24 23:58:41 -07:00
parent 5832d3f36e
commit a75acc3747
2 changed files with 6 additions and 1 deletions

View File

@ -13,6 +13,11 @@
<mat-checkbox (change)="applyStatusFilter($event.checked, 'suspended')">Suspended</mat-checkbox>
<mat-checkbox (change)="applyStatusFilter($event.checked, 'stopped')">Stopped</mat-checkbox>
</div>
Filter devices with captures <br/>
<div>
<mat-checkbox (change)="applyStatusFilter($event.checked, 'started')">Show devices with captures</mat-checkbox><br/>
<mat-checkbox (change)="applyStatusFilter($event.checked, 'started')">Show devices with packet filters</mat-checkbox>
</div>
</div>
<div class="summarySorting">
Sorting <br/>

View File

@ -36,7 +36,7 @@
.summaryContent {
margin-left: 5px;
margin-right: 5px;
max-height: 230px;
max-height: 150px;
overflow: auto;
scrollbar-color: darkgrey #263238;
scrollbar-width: thin;