17 lines
294 B
JavaScript
Executable File
Vendored
17 lines
294 B
JavaScript
Executable File
Vendored
export default {
|
|
created() {
|
|
Nova.$on('metric-refresh', () => {
|
|
this.fetch()
|
|
})
|
|
|
|
if (this.card.refreshWhenActionRuns) {
|
|
Nova.$on('action-executed', () => this.fetch())
|
|
}
|
|
},
|
|
|
|
destroyed() {
|
|
Nova.$off('metric-refresh')
|
|
Nova.$off('action-executed')
|
|
},
|
|
}
|