line / promgen

Promgen is a configuration file generator for Prometheus
https://line.github.io/promgen/
MIT License
1.04k stars 150 forks source link

promgen.vue.js: Fix silence form's delete label #468

Closed vincent-olivert-riera closed 6 months ago

vincent-olivert-riera commented 6 months ago

Before creating the silence, the silence form appears and we have the possibility to remove any labels that were added by default. When doing so, an error like this one happens:

TypeError: this.$delete is not a function

The error occurs because the "$delete" instance method [1] has been removed in Vue 3 [2], but we forgot to adapt this part of the code when we did the migration.

1: https://v2.vuejs.org/v2/api/#vm-delete 2: https://v3-migration.vuejs.org/breaking-changes/#removed-apis