Skip to content
This repository has been archived by the owner on Oct 20, 2021. It is now read-only.

Commit

Permalink
fix: Filter on hits should be based on "endpoint" field
Browse files Browse the repository at this point in the history
  • Loading branch information
aelamrani authored and NicolasGeraud committed Aug 21, 2019
1 parent 77c90b8 commit 63a9965
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion build.json
@@ -1,3 +1,3 @@
{
"version": "1.25.9"
"version": "1.25.10-SNAPSHOT"
}
2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "gravitee-management-webui",
"version": "1.25.9",
"version": "1.25.10-SNAPSHOT",
"description": "Gravitee.io APIM - Portal",
"dependencies": {
"amdefine": "^1.0.1",
Expand Down
4 changes: 2 additions & 2 deletions src/components/dashboard/dashboard-timeframe.controller.ts
Expand Up @@ -61,11 +61,11 @@ class DashboardTimeframeController {
key: '',
label: 'All'
}, {
key: 'api-response-time',
key: 'endpoint',
field: '_exists_',
label: 'Only hits to the backend endpoint'
}, {
key: 'api-response-time',
key: 'endpoint',
field: '!_exists_',
label: 'Without hits to the backend endpoint'
}];
Expand Down
4 changes: 2 additions & 2 deletions src/components/logs/logs-filters.controller.ts
Expand Up @@ -108,11 +108,11 @@ class LogsFiltersController {
key: '',
label: 'All'
}, {
key: 'api-response-time',
key: 'endpoint',
field: '_exists_',
label: 'Only hits to the backend endpoint'
}, {
key: 'api-response-time',
key: 'endpoint',
field: '!_exists_',
label: 'Without hits to the backend endpoint'
}];
Expand Down

0 comments on commit 63a9965

Please sign in to comment.