Skip to content

Commit 43b373f

Browse files
wip
Signed-off-by: Patrick José Pereira <patrickelectric@gmail.com>
1 parent ae75063 commit 43b373f

File tree

2 files changed

+14
-2
lines changed

2 files changed

+14
-2
lines changed

core/frontend/src/views/HealthMonitor.vue

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -234,11 +234,21 @@ export default Vue.extend({
234234
},
235235
filteredActive(): HealthProblem[] {
236236
const issues = this.summary?.active ?? []
237-
return issues.filter((issue) => this.matchesFilters(issue, this.selectedSeverity, this.selectedSource, this.search))
237+
return issues.filter((issue) => this.matchesFilters(
238+
issue,
239+
this.selectedSeverity,
240+
this.selectedSource,
241+
this.search,
242+
))
238243
},
239244
filteredHistory(): HealthEvent[] {
240245
const events = this.history?.events ?? []
241-
return events.filter((event) => this.matchesFilters(event, this.historySeverity, this.historySource, this.historySearch))
246+
return events.filter((event) => this.matchesFilters(
247+
event,
248+
this.historySeverity,
249+
this.historySource,
250+
this.historySearch,
251+
))
242252
},
243253
},
244254
mounted() {

core/uv.lock

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

0 commit comments

Comments
 (0)