Skip to content

Commit

Permalink
fix(orb-ui): #106 Add filter for unkown and idle sinks, remove filter…
Browse files Browse the repository at this point in the history
… for removed agents (#2351)

fix(orb-ui): #106 Add filter for unkown and idle sinks, remove filter for removed agents (#2351)
  • Loading branch information
joao-mendonca-encora authored May 8, 2023
1 parent 665b0ba commit 0430846
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 0 additions & 1 deletion ui/src/app/common/interfaces/orb/agent.interface.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ export enum AgentStates {
online = 'online',
offline = 'offline',
stale = 'stale',
removed = 'removed',
}

/**
Expand Down
2 changes: 2 additions & 0 deletions ui/src/app/common/interfaces/orb/sink.interface.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ import { OrbEntity } from 'app/common/interfaces/orb/orb.entity.interface';
export enum SinkStates {
active = 'active',
error = 'error',
idle = 'idle',
unknown = 'unknown',
}

/**
Expand Down
2 changes: 1 addition & 1 deletion ui/src/app/shared/components/filter/filter.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@
[ngClass]="option"
[value]="option"
>
{{ option }}
{{ option | ngxCapitalize }}
</nb-option>
</nb-select>
</ng-template>
Expand Down

0 comments on commit 0430846

Please sign in to comment.