Skip to content

Commit

Permalink
[#1270] Apply 2 suggestion(s) to 1 file(s)
Browse files Browse the repository at this point in the history
  • Loading branch information
fivitti authored and pzadroga committed Jan 17, 2024
1 parent 2988fec commit 9b9211f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions webui/src/app/machines-page/machines-page.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -251,12 +251,12 @@ export class MachinesPageComponent implements OnInit, OnDestroy {
loadMachines(event) {
this.dataLoading = true
let text
if (event.filters && event.filters.text) {
if (event.filters?.text) {
text = event.filters.text.value
}

let app
if (event.filters && event.filters.app) {
if (event.filters?.app) {
app = event.filters.app.value
}

Expand Down

0 comments on commit 9b9211f

Please sign in to comment.