Skip to content

Commit b007c5c

Browse files
committed
feat: Generic plugable "filters" (alerta#511)
1 parent e7575af commit b007c5c

File tree

15 files changed

+25018
-1426
lines changed

15 files changed

+25018
-1426
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## v8.8.0 (2022-01-07)
2+
3+
### Feat
4+
5+
- Added support for generic plugable "filters" (#511)
6+
17
## v8.4.0 (2021-01-05)
28

39
### Fix

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
Alerta Web UI 7.0
1+
Alerta Web UI 8.0
22
=================
33

44
[![Actions Status](https://github.com/alerta/alerta-webui/workflows/CI%20Tests/badge.svg)](https://github.com/alerta/alerta-webui/actions) [![Slack chat](https://img.shields.io/badge/chat-on%20slack-blue?logo=slack)](https://slack.alerta.dev)
55

6-
Version 7.0 of the Alerta web UI is a [VueJS](https://vuejs.org/) web app.
6+
Version (.0 of the Alerta web UI is a [VueJS](https://vuejs.org/) web app.
77

88
![webui](/docs/images/alerta-webui-v7.png?raw=true&v=1)
99

package-lock.json

Lines changed: 24182 additions & 1419 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/App.vue

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -577,6 +577,13 @@ export default {
577577
perms: 'read:blackouts',
578578
show: true
579579
},
580+
{
581+
icon: 'filter_alt',
582+
text: i18n.t('Filters'),
583+
path: '/filters',
584+
perms: 'read:filters',
585+
show: true
586+
},
580587
{
581588
icon: 'security',
582589
text: i18n.t('Permissions'),

0 commit comments

Comments
 (0)